diff options
Diffstat (limited to 'src/vlib')
-rw-r--r-- | src/vlib/cli.c | 4 | ||||
-rw-r--r-- | src/vlib/node.h | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/vlib/cli.c b/src/vlib/cli.c index c43371e0d9f..9c53200f8cf 100644 --- a/src/vlib/cli.c +++ b/src/vlib/cli.c @@ -872,14 +872,14 @@ show_memory_usage (vlib_main_t * vm, } if (stats_segment) { - void *oldheap = vlib_stats_set_heap (0); + void *oldheap = vlib_stats_set_heap (); was_enabled = clib_mem_trace_enable_disable (0); u8 *s_in_svm = format (0, "%U\n", format_clib_mem_heap, 0, 1); if (oldheap) clib_mem_set_heap (oldheap); u8 *s = vec_dup (s_in_svm); - oldheap = vlib_stats_set_heap (0); + oldheap = vlib_stats_set_heap (); vec_free (s_in_svm); if (oldheap) { diff --git a/src/vlib/node.h b/src/vlib/node.h index dbff6c1e1e0..e40208b4bed 100644 --- a/src/vlib/node.h +++ b/src/vlib/node.h @@ -201,7 +201,8 @@ static __clib_unused vlib_node_registration_t __clib_unused_##x #endif #define VLIB_NODE_FN(node) \ - uword CLIB_MARCH_SFX (node##_fn) (); \ + uword CLIB_MARCH_SFX (node##_fn) (vlib_main_t *, vlib_node_runtime_t *, \ + vlib_frame_t *); \ static vlib_node_fn_registration_t CLIB_MARCH_SFX ( \ node##_fn_registration) = { \ .function = &CLIB_MARCH_SFX (node##_fn), \ |