format fix

This commit is contained in:
Max Bruckner 2016-11-12 15:02:09 +07:00
parent cfd0fb83d3
commit afd690d1c9
1 changed files with 3 additions and 1 deletions

View File

@ -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. */