diff options
Diffstat (limited to 'src/vppinfra/fheap.c')
-rw-r--r-- | src/vppinfra/fheap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/fheap.c b/src/vppinfra/fheap.c index 1369245615a..034168e85ab 100644 --- a/src/vppinfra/fheap.c +++ b/src/vppinfra/fheap.c @@ -167,7 +167,7 @@ fheap_add (fheap_t * f, u32 ni, u32 key) n = vec_elt_at_index (f->nodes, ni); - memset (n, 0, sizeof (n[0])); + clib_memset (n, 0, sizeof (n[0])); n->parent = n->first_child = n->next_sibling = n->prev_sibling = ~0; n->key = key; |