diff options
author | benker <benkerbuild@gmail.com> | 2021-12-14 15:31:14 +0000 |
---|---|---|
committer | Laiyung Leung <benkerbuild@gmail.com> | 2021-12-17 12:47:39 +0000 |
commit | ddb8d65a9786e609dbf17920a3cb2faa63a7932e (patch) | |
tree | e5b5c426411e433e02040214e7cf8becf54ff6ac | |
parent | 20c242316cbbfa353d4f338ebee7ac715956b6aa (diff) |
vppinfra: missing __clib_export
Type: fix
hash_resize is available in hash.h file, but missing __clib_export in hash.c
Signed-off-by: Leung Lai Yung <benkerbuild@gmail.com>
Change-Id: Ibb741b532cd1080ec5d8314aae8dbbca87f42502
-rw-r--r-- | src/vppinfra/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/hash.c b/src/vppinfra/hash.c index d40083fdb5b..c7774bb87ef 100644 --- a/src/vppinfra/hash.c +++ b/src/vppinfra/hash.c @@ -828,7 +828,7 @@ hash_resize_internal (void *old, uword new_size, uword free_old) return new; } -void * +__clib_export void * hash_resize (void *old, uword new_size) { return hash_resize_internal (old, new_size, 1); |