From e4684a2f9d07ca6ad836028514dda8e3e6643bf8 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 20 Oct 2019 15:24:18 +0200 Subject: [PATCH] fix ice logging message --- src/comp.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/comp.c b/src/comp.c index 039daeeaadc..be966c2709a 100644 --- a/src/comp.c +++ b/src/comp.c @@ -218,10 +218,9 @@ static void ice (const char* msg) { if (msg) - msg = format_string ("Internal native compiler error: %s", msg); + error ("Internal native compiler error: %s", msg); else - msg = "Internal native compiler error"; - error ("%s", msg); + error ("Internal native compiler error"); } static void -- 2.39.5