diff --git a/cJSON.c b/cJSON.c index ae70fc6..06d2cb8 100644 --- a/cJSON.c +++ b/cJSON.c @@ -920,7 +920,9 @@ static const char *parse_value(cJSON *item, const char *value, const char **ep) return parse_object(item, value, ep); } - *ep=value;return 0; /* failure. */ + /* failure. */ + *ep = value; + return 0; } /* Render a value to text. */