vppinfra: fix bihash_8_16 entry format function

Type: fix

Change-Id: I1e8655baaf09b455f7f0052452402a372f738d0f
Signed-off-by: Benoît Ganne <bganne@cisco.com>
This commit is contained in:
Benoît Ganne
2022-06-10 09:40:47 +02:00
parent c2ab1bdbc7
commit 0d5f1a6c54

View File

@@ -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;
}