messages sent to info/warning/error/fatal should end with endmsg, not endl
authorPaul Davis <paul@linuxaudiosystems.com>
Wed, 20 Jul 2016 20:34:00 +0000 (16:34 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Wed, 20 Jul 2016 20:34:00 +0000 (16:34 -0400)
libs/ardour/rc_configuration.cc

index ebe55010701da9b7ed14293282ed03c0a78c556e..7fc2f5105b6755ed7906c0d1d7f9f781c1e417f1 100644 (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)) {