From c22dc30cac33ae37fa02e3b6c667d755364ce895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Thu, 20 Oct 2022 13:40:24 +0100 Subject: [PATCH] tvbtest: Fix printf() format --- epan/tvbtest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/tvbtest.c b/epan/tvbtest.c index d924004c90..f9f5f445d2 100644 --- a/epan/tvbtest.c +++ b/epan/tvbtest.c @@ -673,7 +673,7 @@ varint_tests(void) } ENDTRY; if (got_ex != vit->expect_except) { - printf("Failed varint #%zu with exception=%d while expected exception=%d\n", + printf("Failed varint #%zu with exception=%lu while expected exception=%lu\n", ix, got_ex, vit->expect_except); failed = TRUE; continue;