Skip to content

Commit

Permalink
stage1: fix compile error on macOS Xcode 11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mikdusan authored and andrewrk committed Oct 4, 2019
1 parent 071af5c commit 81c6bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dump_analysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ static void jw_nl_indent(JsonWriter *jw) {
assert(jw->state_index >= 1);
fprintf(jw->f, "%s", jw->nl);
for (size_t i = 0; i < jw->state_index - 1; i += 1) {
fprintf(jw->f, jw->one_indent);
fprintf(jw->f, "%s", jw->one_indent);
}
}

Expand Down

0 comments on commit 81c6bd3

Please sign in to comment.