Another attempt to squash warnings from printf use in reassemble_test.c

Change-Id: Ieae9466c6785cf931fc96f8e216c0c1383a5b6a2
Reviewed-on: https://code.wireshark.org/review/16489
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Michael Mann 2016-07-15 22:33:40 -04:00
parent 16a01cfb01
commit 5c99fc2b53
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ static int failure = 0;
#define ASSERT_EQ(exp,act) \
if ((exp)!=(act)) { \
failure = 1; \
printf("Assertion failed at line %i: %s==%s (%u==%u)\n", __LINE__, #exp, #act, exp, act); \
printf("Assertion failed at line %i: %s==%s (%u==%u)\n", __LINE__, #exp, #act, (guint)exp, (guint)act); \
exit(1); \
}