forked from Telodendria/Telodendria
Fix bug on some platforms that use unsigned characters.
This commit is contained in:
parent
d969f4d053
commit
8e2399e648
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue