summaryrefslogtreecommitdiff
path: root/tests/t-constants.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/t-constants.c')
-rw-r--r--tests/t-constants.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/t-constants.c b/tests/t-constants.c
index e8ae73ebf..922d8c1a1 100644
--- a/tests/t-constants.c
+++ b/tests/t-constants.c
@@ -31,7 +31,7 @@ MA 02111-1307, USA.
#define CHECK_CONSTANT(x,y) \
if ((x) != (y)) \
{ \
- printf ("%s == %d, but %s == %d\n", #x, x, #y, y); \
+ printf ("%s == %lx, but %s == %lx\n", #x, x, #y, y); \
abort (); \
}
#define CHECK_CONDITION(x) \
@@ -45,7 +45,7 @@ MA 02111-1307, USA.
#define CHECK_CONSTANT(x,y) \
if ((x) != (y)) \
{ \
- printf ("x == %d, but y == %d\n", x, y); \
+ printf ("x == %lx, but y == %lx\n", x, y); \
abort (); \
}
#define CHECK_CONDITION(x) \