*: Fix linter errors

Drops comments `// for …` that do not pass linter for them being unmaintainable 
and fast to becoming incomplete or even incorrect.

Mention @dedmass
This commit is contained in:
ZyX
2017-04-08 19:11:42 +03:00
parent dc9722326e
commit ab19fa1552
7 changed files with 18 additions and 18 deletions

View File

@@ -755,9 +755,9 @@ json_decode_string_cycle_start:
break;
}
case '"': {
if (parse_json_string(
buf, buf_len, &p, &stack, &container_stack,
&next_map_special, &didcomma, &didcolon) == FAIL) {
if (parse_json_string(buf, buf_len, &p, &stack, &container_stack,
&next_map_special, &didcomma, &didcolon)
== FAIL) {
// Error message was already given
goto json_decode_string_fail;
}