log_error(): Add missing space and new line in fatal error message
authorFabian Keil <fk@fabiankeil.de>
Mon, 3 Jun 2024 14:57:34 +0000 (16:57 +0200)
committerFabian Keil <fk@fabiankeil.de>
Sun, 9 Jun 2024 13:24:07 +0000 (15:24 +0200)
errlog.c

index 27bb4e0..75040d1 100644 (file)
--- a/errlog.c
+++ b/errlog.c
@@ -692,8 +692,8 @@ void log_error(int loglevel, const char *fmt, ...)
 #endif
       if (loglevel == LOG_LEVEL_FATAL)
       {
-         fatal_error("Fatal error. You're not supposed to"
-            "see this message. Please file a bug report.");
+         fatal_error("Fatal error. You're not supposed to "
+            "see this message. Please file a bug report.\n");
       }
       return;
    }