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:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user