summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Plugin.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-14 05:11:04 +0000
committerDavid Robillard <d@drobilla.net>2012-05-14 05:11:04 +0000
commitbf7116520bc723980edb1120eaa66455a4c66ca5 (patch)
treedb8320d389e5ecdecbf7df8efbb3962f5a851648 /src/server/LV2Plugin.cpp
parent1952ad39639b620a8ce43b0b0edf5c1283e5e8c5 (diff)
downloadingen-bf7116520bc723980edb1120eaa66455a4c66ca5.tar.gz
ingen-bf7116520bc723980edb1120eaa66455a4c66ca5.tar.bz2
ingen-bf7116520bc723980edb1120eaa66455a4c66ca5.zip
Tidy.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4410 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/LV2Plugin.cpp')
-rw-r--r--src/server/LV2Plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/LV2Plugin.cpp b/src/server/LV2Plugin.cpp
index 20f68c17..4998e821 100644
--- a/src/server/LV2Plugin.cpp
+++ b/src/server/LV2Plugin.cpp
@@ -52,7 +52,7 @@ LV2Plugin::symbol() const
size_t last_slash = working.find_last_of("/");
const string symbol = working.substr(last_slash+1);
if ( (symbol[0] >= 'a' && symbol[0] <= 'z')
- || (symbol[0] >= 'A' && symbol[0] <= 'Z') )
+ || (symbol[0] >= 'A' && symbol[0] <= 'Z') )
return Raul::Path::nameify(symbol);
else
working = working.substr(0, last_slash);