aboutsummaryrefslogtreecommitdiffstats
path: root/src/vppinfra/hash.c
diff options
context:
space:
mode:
authorbenker <benkerbuild@gmail.com>2021-12-14 15:31:14 +0000
committerLaiyung Leung <benkerbuild@gmail.com>2021-12-17 12:47:39 +0000
commitddb8d65a9786e609dbf17920a3cb2faa63a7932e (patch)
treee5b5c426411e433e02040214e7cf8becf54ff6ac /src/vppinfra/hash.c
parent20c242316cbbfa353d4f338ebee7ac715956b6aa (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
Diffstat (limited to 'src/vppinfra/hash.c')
-rw-r--r--src/vppinfra/hash.c2
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);