From 62531bd0123ccba70a1d9f638529b07f450c4d69 Mon Sep 17 00:00:00 2001 From: Jason Choy Date: Thu, 13 Jun 2013 11:37:07 +0100 Subject: [PATCH] Prevent unused-variable warning --- test/suites/api/test_load.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/suites/api/test_load.c b/test/suites/api/test_load.c index f5836bc..da2fee6 100644 --- a/test/suites/api/test_load.c +++ b/test/suites/api/test_load.c @@ -92,8 +92,10 @@ static void decode_int_as_real() json_t *json; json_error_t error; +#if JSON_INTEGER_IS_LONG_LONG const char *imprecise; json_int_t expected; +#endif json = json_loads("42", JSON_DECODE_INT_AS_REAL | JSON_DECODE_ANY, &error); if (!json || !json_is_real(json) || json_real_value(json) != 42.0)