From: Christian Hesse Date: Thu, 23 Feb 2023 10:15:03 +0000 (+0100) Subject: tc: add missing separator X-Git-Tag: v6.3.0~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e0e56e0ef05387f7f5d8ab41fe6ec6a1897b26d;p=thirdparty%2Fiproute2.git tc: add missing separator This is missing a separator, that was accidently removed when JSON was added. Fixes: 010a8388aea1 ("tc: Add JSON output to tc-class") Signed-off-by: Christian Hesse Signed-off-by: Stephen Hemminger --- diff --git a/tc/tc_class.c b/tc/tc_class.c index c1feb0098..096fa2ecd 100644 --- a/tc/tc_class.c +++ b/tc/tc_class.c @@ -356,7 +356,7 @@ int print_class(struct nlmsghdr *n, void *arg) print_string(PRINT_ANY, "parent", "parent %s ", abuf); } if (t->tcm_info) - print_0xhex(PRINT_ANY, "leaf", "leaf %x", t->tcm_info>>16); + print_0xhex(PRINT_ANY, "leaf", "leaf %x: ", t->tcm_info>>16); q = get_qdisc_kind(RTA_DATA(tb[TCA_KIND])); if (tb[TCA_OPTIONS]) {