Use %I64d format for printing long longs on Windows

Fixes GH-38.
This commit is contained in:
Petri Lehtinen 2011-11-01 19:41:25 +02:00
parent 32cd821273
commit bc98ab6a69

View file

@ -53,7 +53,11 @@ typedef struct {
} json_t;
#if JSON_INTEGER_IS_LONG_LONG
#ifdef _WIN32
#define JSON_INTEGER_FORMAT "I64d"
#else
#define JSON_INTEGER_FORMAT "lld"
#endif
typedef long long json_int_t;
#else
#define JSON_INTEGER_FORMAT "ld"