summaryrefslogtreecommitdiff
path: root/input.h
diff options
context:
space:
mode:
Diffstat (limited to 'input.h')
-rw-r--r--input.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/input.h b/input.h
index d386da0..f7593ce 100644
--- a/input.h
+++ b/input.h
@@ -4,9 +4,9 @@
/* simple macro to check a result against an expected value */
#define CHECK(actual, expected) {\
if(actual == expected)\
- printf("%d ok\n", actual);\
+ printf("%ld ok\n", actual);\
else\
- printf("%d ko, expected %d\n", actual, expected);\
+ printf("%ld ko, expected %ld\n", actual, expected);\
}
struct input_int {