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/tc.c | |
parent | 0545bfa841540a0d7d7e2953bc205eda64144c2e (diff) |
style fix, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tc.c')
-rw-r--r-- | networking/tc.c | 6 |
1 files changed, 4 insertions, 2 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; |