From 0d5f1a6c5449092ef4503e57e1e68d0032bc67ef Mon Sep 17 00:00:00 2001 From: =?utf8?q?Beno=C3=AEt=20Ganne?= Date: Fri, 10 Jun 2022 09:40:47 +0200 Subject: [PATCH] vppinfra: fix bihash_8_16 entry format function MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Type: fix Change-Id: I1e8655baaf09b455f7f0052452402a372f738d0f Signed-off-by: Benoît Ganne --- src/vppinfra/bihash_8_16.h | 3 +-- 1 file changed, 1 insertion(+), 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; } -- 2.16.6