aboutsummaryrefslogtreecommitdiffstats
path: root/src/vlib/node.h
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2022-03-23 16:59:23 +0100
committerFlorin Coras <florin.coras@gmail.com>2022-03-23 18:32:05 +0000
commitd24b86ecce5ab43f4859ed139ce863f5a5c69853 (patch)
treef842b40afa567772079237722a68cc72294352b2 /src/vlib/node.h
parente2d0c6e51ed29949260ae89c1a69cec39a14048f (diff)
vlib: avoid use of vector of voids
Type: fix Change-Id: I76e28854db8a1e9134c816c0c5d81b031dc4e27d Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vlib/node.h')
-rw-r--r--src/vlib/node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vlib/node.h b/src/vlib/node.h
index 296d1832841..ee3aded6068 100644
--- a/src/vlib/node.h
+++ b/src/vlib/node.h
@@ -571,7 +571,7 @@ typedef struct
u32 n_suspends;
/* Vectors of pending event data indexed by event type index. */
- void **pending_event_data_by_type_index;
+ u8 **pending_event_data_by_type_index;
/* Bitmap of event type-indices with non-empty vectors. */
uword *non_empty_event_type_bitmap;