messages sent to info/warning/error/fatal should end with endmsg, not endl

This commit is contained in:
Paul Davis 2016-07-20 16:34:00 -04:00
parent 34fe25c603
commit 9c323c59ef

View File

@ -89,7 +89,7 @@ RCConfiguration::load_state ()
}
if (statbuf.st_size != 0) {
info << string_compose (_("Loading system configuration file %1"), rcfile) << endl;
info << string_compose (_("Loading system configuration file %1"), rcfile) << endmsg;
XMLTree tree;
if (!tree.read (rcfile.c_str())) {
@ -117,7 +117,7 @@ RCConfiguration::load_state ()
}
if (statbuf.st_size != 0) {
info << string_compose (_("Loading user configuration file %1"), rcfile) << endl;
info << string_compose (_("Loading user configuration file %1"), rcfile) << endmsg;
XMLTree tree;
if (!tree.read (rcfile)) {