From: Dave Barach Date: Fri, 29 Nov 2019 13:40:58 +0000 (-0500) Subject: classify: debug cli %v not %s X-Git-Tag: v20.05-rc0~297 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=3268a64d3c9e60d69b3b12d6c6bf1987394275d2 classify: debug cli %v not %s Type: fix Signed-off-by: Dave Barach Change-Id: I294f0b773375f6dce020b771db0726ceb5d812cc --- diff --git a/src/vnet/classify/vnet_classify.c b/src/vnet/classify/vnet_classify.c index fb61401b49c..938f583ef57 100755 --- a/src/vnet/classify/vnet_classify.c +++ b/src/vnet/classify/vnet_classify.c @@ -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);