Skip to content

Commit

Permalink
Fixed broken signed char comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
keijokapp committed Mar 10, 2017
1 parent 956262a commit aa8f70f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ enum json_error json_parser_scan_string(const char** in, const char* end, struct

while(*in < end) {

char c = **in;
unsigned char c = **in;

if(c == '"') break;

Expand Down

0 comments on commit aa8f70f

Please sign in to comment.