style fix, no code changes
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 14 May 2019 15:26:47 +0000 (17:26 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 14 May 2019 15:26:47 +0000 (17:26 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libbb/lineedit.c
modutils/lsmod.c
networking/tc.c
networking/udhcp/dhcpd.c
networking/wget.c
util-linux/mount.c

index 1d5fef5ee05a9dc4add8e536831a4b6b5e09b50f..fbabc6c1204813bd6ef9b1d8ad02bce856047578 100644 (file)
 #if ENABLE_UNICODE_SUPPORT
 # define BB_NUL ((wchar_t)0)
 # define CHAR_T wchar_t
-static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
+static bool BB_isspace(CHAR_T c)
+{
+       return ((unsigned)c < 256 && isspace(c));
+}
 # if ENABLE_FEATURE_EDITING_VI
-static bool BB_isalnum_or_underscore(CHAR_T c) {
+static bool BB_isalnum_or_underscore(CHAR_T c)
+{
        return ((unsigned)c < 256 && isalnum(c)) || c == '_';
 }
 # endif
-static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
+static bool BB_ispunct(CHAR_T c)
+{
+       return ((unsigned)c < 256 && ispunct(c));
+}
 # undef isspace
 # undef isalnum
 # undef ispunct
index 694205fdaf7e1a083e07487795775cfc4e9d126a..39dc8e6b713ec0c8bd6dd5f79c0cc12c59d303a6 100644 (file)
@@ -66,7 +66,10 @@ static void check_tainted(void)
        }
 }
 #else
-static void check_tainted(void) { putchar('\n'); }
+static ALWAYS_INLINE void check_tainted(void)
+{
+       putchar('\n');
+}
 #endif
 
 int lsmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
index 3e9808328d8b4ab4071020b8ccc9f74df9110f85..2e1078d31bc122b44d4aef246a0a4d894c20f353 100644 (file)
@@ -124,7 +124,8 @@ static char* print_tc_classid(uint32_t cid)
 }
 
 /* Get a qdisc handle.  Return 0 on success, !0 otherwise.  */
-static int get_qdisc_handle(uint32_t *h, const char *str) {
+static int get_qdisc_handle(uint32_t *h, const char *str)
+{
        uint32_t maj;
        char *p;
 
@@ -143,7 +144,8 @@ static int get_qdisc_handle(uint32_t *h, const char *str) {
 }
 
 /* Get class ID.  Return 0 on success, !0 otherwise.  */
-static int get_tc_classid(uint32_t *h, const char *str) {
+static int get_tc_classid(uint32_t *h, const char *str)
+{
        uint32_t maj, min;
        char *p;
 
index c46e1721ed3cda2db2e3b6803794019fe4f06633..0642fc826389572a593d378baefdd26b4175aa70 100644 (file)
@@ -365,7 +365,8 @@ static int FAST_FUNC read_staticlease(const char *const_line, void *arg)
        return 1;
 }
 
-static int FAST_FUNC read_optset(const char *line, void *arg) {
+static int FAST_FUNC read_optset(const char *line, void *arg)
+{
        return udhcp_str2optset(line, arg,
                        dhcp_optflags, dhcp_option_strings,
                        /*dhcpv6:*/ 0
index fa4d21afdd78647d76b58988dc4d79663653ec5c..b6f9d605ac5630e16ddbb7f1fcf165eed38dd871 100644 (file)
@@ -312,7 +312,7 @@ static void progress_meter(int flag)
        }
 }
 #else
-static ALWAYS_INLINE void progress_meter(int flag UNUSED_PARAM) { }
+static ALWAYS_INLINE void progress_meter(int flag UNUSED_PARAM) {}
 #endif
 
 
index 526b4130c19024bff46b9ab312f0cdf61d5fbd9d..e6bad7c2c847983f086d129658274b18c88931e2 100644 (file)
@@ -1194,7 +1194,10 @@ static int daemonize(void)
        return 1;
 }
 #else
-static inline int daemonize(void) { return -ENOSYS; }
+static inline int daemonize(void)
+{
+       return -ENOSYS;
+}
 #endif
 
 /* TODO */