summaryrefslogtreecommitdiff
path: root/json_tokener.c
diff options
context:
space:
mode:
Diffstat (limited to 'json_tokener.c')
-rw-r--r--json_tokener.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/json_tokener.c b/json_tokener.c
index 63e02a1..6527270 100644
--- a/json_tokener.c
+++ b/json_tokener.c
@@ -430,7 +430,7 @@ struct json_object *json_tokener_parse_ex(struct json_tokener *tok, const char *
{
char inf_char = *str;
if (!(tok->flags & JSON_TOKENER_STRICT))
- inf_char = tolower((int)*str);
+ inf_char = tolower((unsigned char)*str);
if (inf_char != _json_inf_str[tok->st_pos])
{
tok->err = json_tokener_error_parse_unexpected;