summaryrefslogtreecommitdiff
path: root/libs/ardour/template_utils.cc
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2007-11-13 06:41:02 +0000
committerTim Mayberry <mojofunk@gmail.com>2007-11-13 06:41:02 +0000
commite1351fbe7525b73cb6f8420b7c72abb809f7405f (patch)
treecf7bf34943b5b04708ee4665560668f3021a647c /libs/ardour/template_utils.cc
parente75fe398ac633fc247610c998e724e9b40c66090 (diff)
Don't log a warning when the system template directory does not exist.
git-svn-id: svn://localhost/ardour2/trunk@2639 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/template_utils.cc')
-rw-r--r--libs/ardour/template_utils.cc7
1 files changed, 1 insertions, 6 deletions
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 <algorithm>
#include <pbd/filesystem.h>
-#include <pbd/error.h>
#include <ardour/template_utils.h>
#include <ardour/directory_names.h>
@@ -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;
}