]> git.eshelyaron.com Git - emacs.git/commitdiff
fix ice logging message
authorAndrea Corallo <akrl@sdf.org>
Sun, 20 Oct 2019 13:24:18 +0000 (15:24 +0200)
committerAndrea Corallo <akrl@sdf.org>
Wed, 1 Jan 2020 10:37:58 +0000 (11:37 +0100)
src/comp.c

index 039daeeaadc0ccf5f542ad19a984534cc6fb66fa..be966c2709a2ed9fd42d4c9696f6d058c75d843b 100644 (file)
@@ -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