summaryrefslogtreecommitdiff
path: root/test/yajl_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/yajl_test.c')
-rw-r--r--test/yajl_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/yajl_test.c b/test/yajl_test.c
index 0f07a94..07c9f17 100644
--- a/test/yajl_test.c
+++ b/test/yajl_test.c
@@ -93,9 +93,9 @@ static int test_yajl_boolean(void * ctx, int boolVal)
return 1;
}
-static int test_yajl_integer(void *ctx, long integerVal)
+static int test_yajl_integer(void *ctx, long long integerVal)
{
- printf("integer: %ld\n", integerVal);
+ printf("integer: %lld\n", integerVal);
return 1;
}