mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 21:45:04 +00:00
Fix a few more compilation issues
These were left out from the previous commit.
This commit is contained in:
parent
9c5a8430db
commit
19588c2d69
1 changed files with 2 additions and 2 deletions
|
@ -258,14 +258,14 @@ static void lex_scan_string(lex_t *lex, json_error_t *error)
|
|||
c = lex_get_save(lex, error);
|
||||
|
||||
while(c != '"') {
|
||||
if(c == EOF) {
|
||||
if(c == (char)EOF) {
|
||||
lex_unget_unsave(lex, c);
|
||||
if(lex_eof(lex))
|
||||
error_set(error, lex, "premature end of input");
|
||||
goto out;
|
||||
}
|
||||
|
||||
else if(0 <= c && c <= 0x1F) {
|
||||
else if((unsigned char)c <= 0x1F) {
|
||||
/* control character */
|
||||
lex_unget_unsave(lex, c);
|
||||
if(c == '\n')
|
||||
|
|
Loading…
Add table
Reference in a new issue