aboutsummaryrefslogtreecommitdiffstats
path: root/lib/json.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2012-11-09 23:48:22 +0000
committerWilmer van der Gaast <wilmer@gaast.net>2012-11-09 23:48:22 +0000
commit5d749adc3e7698ac3904b3e8f823cb9628f9432c (patch)
treeef6fbab0bc14f33d5b0447c328ac2939d2950a7b /lib/json.h
parent5246133a607561abe8096c471de02bddeb6be67c (diff)
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.
Diffstat (limited to 'lib/json.h')
-rw-r--r--lib/json.h2
1 files changed, 1 insertions, 1 deletions
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