diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2012-11-09 23:48:22 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2012-11-09 23:48:22 +0000 |
commit | 5d749adc3e7698ac3904b3e8f823cb9628f9432c (patch) | |
tree | ef6fbab0bc14f33d5b0447c328ac2939d2950a7b /lib/json.h | |
parent | 5246133a607561abe8096c471de02bddeb6be67c (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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -77,7 +77,7 @@ typedef struct _json_value union { int boolean; - long integer; + long long integer; double dbl; struct |