diff options
author | Damjan Marion <dmarion@me.com> | 2022-10-12 16:02:18 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2022-10-12 16:04:13 +0200 |
commit | dd298e804a25dbebc9e284b3b2d0dfd9bf674ad8 (patch) | |
tree | cd91568dc9f1947c04d97eb95e15ae06d5d0ec06 /src/vnet/devices | |
parent | 0f8f4351b03f9350a406ad1d63f97d1f4b59fec2 (diff) |
misc: fix issues reported by clang-15
Type: improvement
Change-Id: I3fbbda0378b72843ecd39a7e8592dedc9757793a
Signed-off-by: Damjan Marion <dmarion@me.com>
Diffstat (limited to 'src/vnet/devices')
-rw-r--r-- | src/vnet/devices/pipe/pipe.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vnet/devices/pipe/pipe.c b/src/vnet/devices/pipe/pipe.c index 26b01970b6c..cd22c1a1478 100644 --- a/src/vnet/devices/pipe/pipe.c +++ b/src/vnet/devices/pipe/pipe.c @@ -131,7 +131,7 @@ pipe_tx (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) { u32 n_left_from, n_left_to_next, n_copy, *from, *to_next; u32 next_index = VNET_PIPE_TX_NEXT_ETHERNET_INPUT; - u32 i, sw_if_index = 0, n_pkts = 0; + u32 i, sw_if_index = 0; vlib_buffer_t *b; pipe_t *pipe; @@ -159,7 +159,6 @@ pipe_tx (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) vnet_buffer (b)->sw_if_index[VLIB_TX] = ~0; i++; - n_pkts++; } from += n_copy; |