From 81c6bd37aa760995083640477e79a984a0fb7712 Mon Sep 17 00:00:00 2001 From: Michael Dusan Date: Thu, 3 Oct 2019 23:47:10 -0400 Subject: [PATCH] stage1: fix compile error on macOS Xcode 11.1 --- src/dump_analysis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dump_analysis.cpp b/src/dump_analysis.cpp index 9cb0f46c9ff3..401fa37ded06 100644 --- a/src/dump_analysis.cpp +++ b/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); } }