diff --git a/libs/ardour/template_utils.cc b/libs/ardour/template_utils.cc index 5def842c4c..171939dac2 100644 --- a/libs/ardour/template_utils.cc +++ b/libs/ardour/template_utils.cc @@ -1,7 +1,6 @@ #include #include -#include #include #include @@ -18,11 +17,7 @@ system_template_directory () // just return the first directory in the search path that exists SearchPath::const_iterator i = std::find_if(spath.begin(), spath.end(), sys::exists); - if (i == spath.end()) - { - warning << "System template directory does not exist" << endmsg; - return sys::path(""); - } + if (i == spath.end()) return sys::path(); return *i; }