From 5d749adc3e7698ac3904b3e8f823cb9628f9432c Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Fri, 9 Nov 2012 23:48:22 +0000 Subject: One difference in json.h: use "long long" instead of "long" for integer types, or it might be too small to contain Twitter message IDs on for example GCC+i386. --- lib/json.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/json.h') diff --git a/lib/json.h b/lib/json.h index cbddc693..3800565a 100644 --- a/lib/json.h +++ b/lib/json.h @@ -77,7 +77,7 @@ typedef struct _json_value union { int boolean; - long integer; + long long integer; double dbl; struct -- cgit v1.2.3