Commit 81c6bd37aa

Michael Dusan <michael.dusan@gmail.com>
2019-10-04 05:47:10
stage1: fix compile error on macOS Xcode 11.1
1 parent 071af5c
Changed files (1)
src/dump_analysis.cpp
@@ -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);
     }
 }