Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2022-08-30 17:41:17 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2022-08-30 17:41:17 +0300
commitfe73c8d55795a8fe7e95fc2c00af6899817b96b8 (patch)
tree1b772243f00c63d16ee4cf8bf6f80a6c7a53ee91 /networking
parent58598eb7093561d914a6254697e137b815f1fdfc (diff)
*: style fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r--networking/tc.c2
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)
return 0;
parse_rtattr_nested_compat(tb, TCA_PRIO_MAX, opt, qopt, sizeof(*qopt));
printf("bands %u priomap ", qopt->bands);
- for (i=0; i<=TC_PRIO_MAX; i++)
+ for (i = 0; i <= TC_PRIO_MAX; i++)
printf(" %d", qopt->priomap[i]);
if (tb[TCA_PRIO_MQ])