From: Fabian Keil Date: Mon, 3 Jun 2024 14:57:34 +0000 (+0200) Subject: log_error(): Add missing space and new line in fatal error message X-Git-Url: http://www.privoxy.org/gitweb/general.html?a=commitdiff_plain;h=58e96466f948ed510d4c8335e0dfdbb2830ff97b;p=privoxy.git log_error(): Add missing space and new line in fatal error message --- diff --git a/errlog.c b/errlog.c index 27bb4e0c..75040d16 100644 --- 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; }