diff options
author | Denys Vlasenko | 2022-08-30 16:41:17 +0200 |
---|---|---|
committer | Denys Vlasenko | 2022-08-30 16:41:17 +0200 |
commit | fe73c8d55795a8fe7e95fc2c00af6899817b96b8 (patch) | |
tree | 1b772243f00c63d16ee4cf8bf6f80a6c7a53ee91 /networking | |
parent | 58598eb7093561d914a6254697e137b815f1fdfc (diff) | |
download | busybox-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.zip busybox-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.tar.gz |
*: style fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-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 46ad23d..43187f7 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]) |