mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 05:25:04 +00:00
Merge pull request #311 from robertmu/master
Fix passing redundant argument to error_set()
This commit is contained in:
commit
575f951b3e
1 changed files with 1 additions and 1 deletions
|
@ -340,7 +340,7 @@ static void lex_scan_string(lex_t *lex, json_error_t *error)
|
|||
/* control character */
|
||||
lex_unget_unsave(lex, c);
|
||||
if(c == '\n')
|
||||
error_set(error, lex, "unexpected newline", c);
|
||||
error_set(error, lex, "unexpected newline");
|
||||
else
|
||||
error_set(error, lex, "control character 0x%x", c);
|
||||
goto out;
|
||||
|
|
Loading…
Add table
Reference in a new issue