From d24b86ecce5ab43f4859ed139ce863f5a5c69853 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Wed, 23 Mar 2022 16:59:23 +0100 Subject: vlib: avoid use of vector of voids Type: fix Change-Id: I76e28854db8a1e9134c816c0c5d81b031dc4e27d Signed-off-by: Damjan Marion --- src/vlib/node.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vlib/node.h') 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; -- cgit 1.2.3-korg