vppinfra: missing __clib_export 25/34725/3
authorbenker <benkerbuild@gmail.com>
Tue, 14 Dec 2021 15:31:14 +0000 (15:31 +0000)
committerLaiyung Leung <benkerbuild@gmail.com>
Fri, 17 Dec 2021 12:47:39 +0000 (12:47 +0000)
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

src/vppinfra/hash.c

index d40083f..c7774bb 100644 (file)
@@ -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);