From ba6a1aa73ebbb5fb9eb3bb03c7e33cad9a0d68db Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Mon, 28 Nov 2016 12:19:52 -0600 Subject: [PATCH] unittest-helper: fix format string compiler warnings --- src/util-unittest-helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util-unittest-helper.c b/src/util-unittest-helper.c index 2eb2df2073..f82da37bda 100644 --- a/src/util-unittest-helper.c +++ b/src/util-unittest-helper.c @@ -570,7 +570,7 @@ int UTHCheckPacketMatchResults(Packet *p, uint32_t sids[], for (; i < numsids; i++) { uint16_t r = PacketAlertCheck(p, sids[i]); if (r != results[i]) { - SCLogInfo("Sid %"PRIu32" matched %"PRIu16" times, and not %"PRIu16 + SCLogInfo("Sid %"PRIu32" matched %"PRIu16" times, and not %"PRIu32 " as expected", sids[i], r, results[i]); res = 0; } else {