diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-05-14 17:26:47 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-05-14 17:26:47 +0200 |
commit | 8c317f03f6d4d89fd7b0cc1e6eaf515040b8e701 (patch) | |
tree | 4bf2806134b65a8734ab6521fb2a1ce243631b42 /networking | |
parent | 0545bfa841540a0d7d7e2953bc205eda64144c2e (diff) | |
download | busybox-8c317f03f6d4d89fd7b0cc1e6eaf515040b8e701.tar.gz |
style fix, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/tc.c | 6 | ||||
-rw-r--r-- | networking/udhcp/dhcpd.c | 3 | ||||
-rw-r--r-- | networking/wget.c | 2 |
3 files changed, 7 insertions, 4 deletions
diff --git a/networking/tc.c b/networking/tc.c index 3e9808328..2e1078d31 100644 --- a/networking/tc.c +++ b/networking/tc.c @@ -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; diff --git a/networking/udhcp/dhcpd.c b/networking/udhcp/dhcpd.c index c46e1721e..0642fc826 100644 --- a/networking/udhcp/dhcpd.c +++ b/networking/udhcp/dhcpd.c @@ -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 diff --git a/networking/wget.c b/networking/wget.c index fa4d21afd..b6f9d605a 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -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 |