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 <sluong@cisco.com>
This commit is contained in:
Steven Luong
2023-07-25 12:32:01 -07:00
committed by Dave Wallace
parent 0028e6f316
commit 116392b174

View File

@ -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);