From: Benoît Ganne Date: Fri, 10 Jun 2022 07:40:47 +0000 (+0200) Subject: vppinfra: fix bihash_8_16 entry format function X-Git-Tag: v23.02-rc0~188 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=0d5f1a6c5449092ef4503e57e1e68d0032bc67ef;p=vpp.git vppinfra: fix bihash_8_16 entry format function Type: fix Change-Id: I1e8655baaf09b455f7f0052452402a372f738d0f Signed-off-by: Benoît Ganne --- 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; }