From ddb8d65a9786e609dbf17920a3cb2faa63a7932e Mon Sep 17 00:00:00 2001 From: benker Date: Tue, 14 Dec 2021 15:31:14 +0000 Subject: 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 Change-Id: Ibb741b532cd1080ec5d8314aae8dbbca87f42502 --- src/vppinfra/hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vppinfra/hash.c') 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); -- cgit 1.2.3-korg