Fix json printing errors

This commit is contained in:
olemorud
2023-04-23 19:38:15 +02:00
parent 5365740941
commit f70be0f392
2 changed files with 10 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ struct json_value {
struct json_value** array;
char* string;
bool boolean;
int64_t number;
double number;
};
};