diff options
Diffstat (limited to 'src/shared/json-internal.h')
-rw-r--r-- | src/shared/json-internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/json-internal.h b/src/shared/json-internal.h index 652fde6147..778cc51e75 100644 --- a/src/shared/json-internal.h +++ b/src/shared/json-internal.h @@ -12,8 +12,8 @@ typedef union JsonValue { /* Encodes a simple value. This structure is generally 8 bytes wide (as double is 64bit). */ bool boolean; double real; - intmax_t integer; - uintmax_t unsig; + int64_t integer; + uint64_t unsig; } JsonValue; /* Let's protect us against accidental structure size changes on our most relevant arch */ |