From: Steven Luong Date: Tue, 25 Jul 2023 19:32:01 +0000 (-0700) Subject: stats: remove extra format line X-Git-Tag: v24.02-rc0~116 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=116392b1742e86440c6a194170c1c9bca1314fe1;p=vpp.git stats: remove extra format line The extra format line was added for no reason from patch ff27c9f8e. Type: fix Fixes: ff27c9f8e Change-Id: Ib25149cc8a17c29d0c8a0dbc06f0ea12ca4f328c Signed-off-by: Steven Luong --- diff --git a/src/vnet/interface/stats.c b/src/vnet/interface/stats.c index cb0eda001d7..4f3213aafc3 100644 --- a/src/vnet/interface/stats.c +++ b/src/vnet/interface/stats.c @@ -25,7 +25,7 @@ static struct static clib_error_t * statseg_sw_interface_add_del (vnet_main_t *vnm, u32 sw_if_index, u32 is_add) { - u8 *name; + u8 *name = 0; if (if_names == 0) { @@ -58,7 +58,6 @@ statseg_sw_interface_add_del (vnet_main_t *vnm, u32 sw_if_index, u32 is_add) for (u32 index, i = 0; i < ARRAY_LEN (if_counters); i++) { - name = format (0, "%v", hi_sup->name); index = vlib_stats_add_symlink ( if_counters[i].index, sw_if_index, "/interfaces/%U/%s", format_vlib_stats_symlink, name, if_counters[i].name);