aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/fib/fib_entry_cover.h
diff options
context:
space:
mode:
authorNeale Ranns <neale.ranns@cisco.com>2020-11-26 09:34:39 +0000
committerBeno�t Ganne <bganne@cisco.com>2020-11-26 13:18:29 +0000
commitfdf6b6f52460890305f231c041e060fbb232550b (patch)
tree07f5301bd4b7ce912a38f1b79fded3a1fdf5b804 /src/vnet/fib/fib_entry_cover.h
parentab4fbedf27ece4ea623d7c3b54cc54f0133ba1f7 (diff)
fib: Expressive type for walk return code. Honour code.
Type: improvement Signed-off-by: Neale Ranns <neale.ranns@cisco.com> Change-Id: I487e698555545fce85d02d55deaaf7bb0007e388
Diffstat (limited to 'src/vnet/fib/fib_entry_cover.h')
-rw-r--r--src/vnet/fib/fib_entry_cover.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vnet/fib/fib_entry_cover.h b/src/vnet/fib/fib_entry_cover.h
index 500d5b33244..499efdc31c6 100644
--- a/src/vnet/fib/fib_entry_cover.h
+++ b/src/vnet/fib/fib_entry_cover.h
@@ -21,9 +21,9 @@
/**
* callback function used when walking the covered entries
*/
-typedef int (*fib_entry_covered_walk_t)(fib_entry_t *cover,
- fib_node_index_t covered,
- void *ctx);
+typedef walk_rc_t (*fib_entry_covered_walk_t)(fib_entry_t *cover,
+ fib_node_index_t covered,
+ void *ctx);
extern u32 fib_entry_cover_track(fib_entry_t *cover,
fib_node_index_t covered);