summaryrefslogtreecommitdiff
path: root/libs/ardour/template_utils.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-03-06 17:09:29 +0100
committerRobin Gareus <robin@gareus.org>2019-03-06 17:09:29 +0100
commit51674b0307ed274c5e7657c327c411068ac8b4a7 (patch)
treef5bb4c902612bbd3f1f8b7a2b0973eec10a18cf1 /libs/ardour/template_utils.cc
parenta24252e0d056aea48edb585474fb92d4b17f32a8 (diff)
Add missing newline on error message
Diffstat (limited to 'libs/ardour/template_utils.cc')
-rw-r--r--libs/ardour/template_utils.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/template_utils.cc b/libs/ardour/template_utils.cc
index d92dc32f52..a62f034f86 100644
--- a/libs/ardour/template_utils.cc
+++ b/libs/ardour/template_utils.cc
@@ -104,7 +104,7 @@ find_session_templates (vector<TemplateInfo>& template_names, bool read_xml)
XMLTree tree;
if (!tree.read (file.c_str())) {
- cerr << "Failed to parse Route-template XML file: " << file;
+ cerr << "Failed to parse Route-template XML file: " << file << endl;
continue;
}
@@ -157,7 +157,7 @@ find_route_templates (vector<TemplateInfo>& template_names)
XMLTree tree;
if (!tree.read (fullpath.c_str())) {
- cerr << "Failed to parse Route-template XML file: " << fullpath;
+ cerr << "Failed to parse Route-template XML file: " << fullpath << endl;
continue;
}