diff options
author | Damjan Marion <damarion@cisco.com> | 2021-05-06 17:28:12 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2021-05-06 16:29:00 +0000 |
commit | 4a251d0a9c6a6a5981b6bc6500994fa9b8f1c43c (patch) | |
tree | 71c103981c8d1528e7d410cb84380bf0f2f18e72 /src/vppinfra/hash.c | |
parent | 2c4acdd8d47a14867d9658debc674323efc78323 (diff) |
vppinfra: fix tests
Type: fix
Change-Id: If59a66aae658dd35dbcb4987ab00c306b3c6e2e2
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra/hash.c')
-rw-r--r-- | src/vppinfra/hash.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/vppinfra/hash.c b/src/vppinfra/hash.c index da37b6e88a7..fc6c4518048 100644 --- a/src/vppinfra/hash.c +++ b/src/vppinfra/hash.c @@ -653,8 +653,8 @@ _hash_get_pair (void *v, uword key) return lookup (v, key, GET, 0, 0); } -hash_pair_t * -hash_next (void *v, hash_next_t * hn) +__clib_export hash_pair_t * +hash_next (void *v, hash_next_t *hn) { hash_t *h = hash_header (v); hash_pair_t *p; @@ -1015,8 +1015,8 @@ hash_bytes (void *v) return bytes; } -u8 * -format_hash (u8 * s, va_list * va) +__clib_export u8 * +format_hash (u8 *s, va_list *va) { void *v = va_arg (*va, void *); int verbose = va_arg (*va, int); @@ -1110,7 +1110,7 @@ unformat_hash_string (unformat_input_t * input, va_list * va) return unformat_hash_string_internal (input, va, /* is_vec */ 0); } -clib_error_t * +__clib_export clib_error_t * hash_validate (void *v) { hash_t *h = hash_header (v); |