diff options
author | Juraj Linkeš <juraj.linkes@pantheon.tech> | 2020-10-22 13:29:28 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-10-22 15:48:34 +0000 |
commit | 7aa76d4319436fe57995b15cfb6e9beb84017160 (patch) | |
tree | c65ddce131bd215ba296711bf5e6612309d40ba5 | |
parent | 70fc36f26855fb4c7a56c5d1563d541b395f8f5d (diff) |
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š <juraj.linkes@pantheon.tech>
Change-Id: I22b7ee842dc606f96effdeb7aa4e161496986aed
-rw-r--r-- | src/vppinfra/unformat.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |