Fix bug on some platforms that use unsigned characters.

This commit is contained in:
Jordan Bancino 2023-01-02 18:22:04 +00:00
parent d969f4d053
commit 8e2399e648

View file

@ -397,7 +397,7 @@ JsonDecodeString(FILE * in)
size_t len;
size_t allocated;
char *str;
char c;
int c;
char a[5];
unsigned long utf8;