diff options
Diffstat (limited to 'src/vppinfra/hash.h')
-rw-r--r-- | src/vppinfra/hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/hash.h b/src/vppinfra/hash.h index 36a70066044..892b2ea916c 100644 --- a/src/vppinfra/hash.h +++ b/src/vppinfra/hash.h @@ -496,7 +496,7 @@ hash_set_value_bytes (hash_t * h, uword value_bytes) _format_pair,_format_pair_arg) \ ({ \ hash_t _h; \ - memset (&_h, 0, sizeof (_h)); \ + clib_memset (&_h, 0, sizeof (_h)); \ _h.user = (_user); \ _h.key_sum = (hash_key_sum_function_t *) (_key_sum); \ _h.key_equal = (_key_equal); \ |