From 51674b0307ed274c5e7657c327c411068ac8b4a7 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 6 Mar 2019 17:09:29 +0100 Subject: [PATCH] Add missing newline on error message --- libs/ardour/template_utils.cc | 4 ++-- 1 file 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& 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& 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; }