summaryrefslogtreecommitdiff
path: root/src/fe-common
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2002-04-15 13:52:23 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2002-04-15 13:52:23 +0000
commit15667ec7ff00b151fde5e9d9927bb75f00f7c79a (patch)
tree833c54bc1ae379243ab3c080079c0d074ea8dcb7 /src/fe-common
parente03bd9b72792f93b1445d212e3ae829a75f311a4 (diff)
downloadirssi-15667ec7ff00b151fde5e9d9927bb75f00f7c79a.zip
GLib errors printed to stderr didn't contain \n
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2681 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common')
-rw-r--r--src/fe-common/core/fe-common-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-common-core.c b/src/fe-common/core/fe-common-core.c
index 89c17c7f..3c1d5870 100644
--- a/src/fe-common/core/fe-common-core.c
+++ b/src/fe-common/core/fe-common-core.c
@@ -269,7 +269,7 @@ void glog_func(const char *log_domain, GLogLevelFlags log_level,
}
if (windows == NULL)
- fprintf(stderr, "GLib %s: %s", reason, message);
+ fprintf(stderr, "GLib %s: %s\n", reason, message);
else {
printformat(NULL, NULL, MSGLEVEL_CLIENTERROR,
TXT_GLIB_ERROR, reason, message);