From: benker Date: Tue, 14 Dec 2021 15:31:14 +0000 (+0000) Subject: vppinfra: missing __clib_export X-Git-Tag: v22.06-rc0~112 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F25%2F34725%2F3;p=vpp.git 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 --- 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);