summaryrefslogtreecommitdiff
path: root/libs/json/include/json/json.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/json/include/json/json.h')
-rw-r--r--libs/json/include/json/json.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/json/include/json/json.h b/libs/json/include/json/json.h
index 84601260..5e2b037e 100644
--- a/libs/json/include/json/json.h
+++ b/libs/json/include/json/json.h
@@ -166,8 +166,8 @@ struct json_attr_t {
char *attribute;
json_type type;
union {
- int *integer;
- unsigned int *uinteger;
+ long long int *integer;
+ long long unsigned int *uinteger;
double *real;
char *string;
bool *boolean;
@@ -176,8 +176,8 @@ struct json_attr_t {
size_t offset;
} addr;
union {
- int integer;
- unsigned int uinteger;
+ long long int integer;
+ long long unsigned int uinteger;
double real;
bool boolean;
char character;