diff options
author | Benoît Ganne <bganne@cisco.com> | 2022-06-10 09:40:47 +0200 |
---|---|---|
committer | Benoît Ganne <bganne@cisco.com> | 2022-06-10 09:55:59 +0200 |
commit | 0d5f1a6c5449092ef4503e57e1e68d0032bc67ef (patch) | |
tree | a2a7b1c40c7aebf1783215b76d4d4a8c489715ef /src | |
parent | c2ab1bdbc73f2743979f8779c027adc04d79bf22 (diff) |
vppinfra: fix bihash_8_16 entry format function
Type: fix
Change-Id: I1e8655baaf09b455f7f0052452402a372f738d0f
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vppinfra/bihash_8_16.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vppinfra/bihash_8_16.h b/src/vppinfra/bihash_8_16.h index b42b32c33d2..a17bddb92c2 100644 --- a/src/vppinfra/bihash_8_16.h +++ b/src/vppinfra/bihash_8_16.h @@ -80,8 +80,7 @@ format_bihash_kvp_8_16 (u8 * s, va_list * args) clib_bihash_kv_8_16_t *v = va_arg (*args, clib_bihash_kv_8_16_t *); s = - format (s, "key %llu value [%ll,%llx]u", v->key, v->value[0], - v->value[1]); + format (s, "key %llx value [%llx,%llx]", v->key, v->value[0], v->value[1]); return s; } |