summaryrefslogtreecommitdiff
path: root/libs/ardour/utils.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-11-06 19:59:00 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-11-06 19:59:00 +0000
commite9604e2173532a72493f093bb3843ed24e4e0df5 (patch)
treec0daf5697e030b0f005930856b8745e4170c27e4 /libs/ardour/utils.cc
parentc860d925da575a9e233119c0e44fff64d130a62b (diff)
better error message if VST SDK is not installed and neeed
git-svn-id: svn://localhost/ardour2/trunk@1080 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/utils.cc')
-rw-r--r--libs/ardour/utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/utils.cc b/libs/ardour/utils.cc
index f346f2a8a6..d6c767de12 100644
--- a/libs/ardour/utils.cc
+++ b/libs/ardour/utils.cc
@@ -213,7 +213,7 @@ region_name_from_path (string path)
/* remove any "?R", "?L" or "?[a-z]" channel identifier */
string::size_type len = path.length();
-
+
if (len > 3 && (path[len-2] == '%' || path[len-2] == '?') &&
(path[len-1] == 'R' || path[len-1] == 'L' || (islower (path[len-1])))) {