summaryrefslogtreecommitdiffstats
path: root/src/vlib/node.h
diff options
context:
space:
mode:
authorOle Troan <ot@cisco.com>2021-05-06 14:09:50 +0200
committerDamjan Marion <dmarion@me.com>2021-05-06 14:19:55 +0000
commit2c4acdd8d47a14867d9658debc674323efc78323 (patch)
tree4685a71f7939e7297219181901a70b11d4d15928 /src/vlib/node.h
parenta606d92107d4bf0107c3f54e2c87d39311f82075 (diff)
vlib: rename vl_counter_t to vlib_error_desc_t
Type: improvement Signed-off-by: Ole Troan <ot@cisco.com> Change-Id: I368b0410db2d633d3c52199c840e24d21952c1b4
Diffstat (limited to 'src/vlib/node.h')
-rw-r--r--src/vlib/node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vlib/node.h b/src/vlib/node.h
index fd792dc3fa6..a06c20211d4 100644
--- a/src/vlib/node.h
+++ b/src/vlib/node.h
@@ -115,7 +115,7 @@ typedef struct _vlib_node_registration
/* Error strings indexed by error code for this node. */
char **error_strings;
- vl_counter_t *error_counters;
+ vlib_error_desc_t *error_counters;
/* Buffer format/unformat for this node. */
format_function_t *format_buffer;
@@ -316,7 +316,7 @@ typedef struct vlib_node_t
u32 error_heap_index;
/* Counter structures indexed by counter code for this node. */
- vl_counter_t *error_counters;
+ vlib_error_desc_t *error_counters;
/* Vector of next node names.
Only used before next_nodes array is initialized. */