diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2022-08-30 16:41:17 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2022-08-30 16:41:17 +0200 |
commit | fe73c8d55795a8fe7e95fc2c00af6899817b96b8 (patch) | |
tree | 1b772243f00c63d16ee4cf8bf6f80a6c7a53ee91 /networking/tc.c | |
parent | 58598eb7093561d914a6254697e137b815f1fdfc (diff) | |
download | busybox-w32-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.tar.gz busybox-w32-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.tar.bz2 busybox-w32-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.zip |
*: style fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tc.c')
-rw-r--r-- | networking/tc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tc.c b/networking/tc.c index 46ad23d8b..43187f7ee 100644 --- a/networking/tc.c +++ b/networking/tc.c | |||
@@ -214,7 +214,7 @@ static int prio_print_opt(struct rtattr *opt) | |||
214 | return 0; | 214 | return 0; |
215 | parse_rtattr_nested_compat(tb, TCA_PRIO_MAX, opt, qopt, sizeof(*qopt)); | 215 | parse_rtattr_nested_compat(tb, TCA_PRIO_MAX, opt, qopt, sizeof(*qopt)); |
216 | printf("bands %u priomap ", qopt->bands); | 216 | printf("bands %u priomap ", qopt->bands); |
217 | for (i=0; i<=TC_PRIO_MAX; i++) | 217 | for (i = 0; i <= TC_PRIO_MAX; i++) |
218 | printf(" %d", qopt->priomap[i]); | 218 | printf(" %d", qopt->priomap[i]); |
219 | 219 | ||
220 | if (tb[TCA_PRIO_MQ]) | 220 | if (tb[TCA_PRIO_MQ]) |