From 7aa76d4319436fe57995b15cfb6e9beb84017160 Mon Sep 17 00:00:00 2001 From: Juraj Linkeš Date: Thu, 22 Oct 2020 13:29:28 +0200 Subject: vppinfra: missing __clib_export va_unformat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- src/vppinfra/unformat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit 1.2.3-korg