classify: debug cli %v not %s

Type: fix

Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: I294f0b773375f6dce020b771db0726ceb5d812cc
(cherry picked from commit 3268a64d3c)
This commit is contained in:
Dave Barach
2019-11-29 08:40:58 -05:00
committed by Andrew Yourtchenko
parent feabb77a48
commit 77d760d708

View File

@ -2001,7 +2001,7 @@ show_classify_filter_command_fn (vlib_main_t * vm,
s = format (s, " none");
}
vlib_cli_output (vm, "%-30s table(s)%s", name, s);
vlib_cli_output (vm, "%-30v table(s)%v", name, s);
vec_reset_length (s);
}
else
@ -2014,7 +2014,7 @@ show_classify_filter_command_fn (vlib_main_t * vm,
else
s = format (s, " none");
vlib_cli_output (vm, "%-30s first table%s", name, s);
vlib_cli_output (vm, "%-30v first table%v", name, s);
vec_reset_length (s);
}
vec_reset_length (name);