projects
/
privoxy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5484d0a
)
log_error(): Add missing space and new line in fatal error message
author
Fabian Keil
<fk@fabiankeil.de>
Mon, 3 Jun 2024 14:57:34 +0000
(16:57 +0200)
committer
Fabian Keil
<fk@fabiankeil.de>
Sun, 9 Jun 2024 13:24:07 +0000
(15:24 +0200)
errlog.c
patch
|
blob
|
history
diff --git
a/errlog.c
b/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;
}