From: Juraj Linkeš Date: Thu, 22 Oct 2020 11:29:28 +0000 (+0200) Subject: vppinfra: missing __clib_export va_unformat X-Git-Tag: v21.06-rc0~290 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=7aa76d4319436fe57995b15cfb6e9beb84017160;p=vpp.git vppinfra: missing __clib_export va_unformat Fix an issue observed on aarch64 systems when running with dpdk plugin: dpdk_plugin.so: undefined symbol: va_unformat Type: fix Fixes: dae1c7ed38e9f7a86e66f3674de62778cc981331 Signed-off-by: Juraj Linkeš Change-Id: I22b7ee842dc606f96effdeb7aa4e161496986aed --- diff --git a/src/vppinfra/unformat.c b/src/vppinfra/unformat.c index 4d9679b4052..172182f8a34 100644 --- a/src/vppinfra/unformat.c +++ b/src/vppinfra/unformat.c @@ -835,7 +835,7 @@ unformat_skip_white_space (unformat_input_t * input) return n; } -uword +__clib_export uword va_unformat (unformat_input_t * input, const char *fmt, va_list * va) { const char *f;