diff options
Diffstat (limited to 'input.h')
-rw-r--r-- | input.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 { |