summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Plugin.cpp
diff options
context:
space:
mode:
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 ce920f4e..9450373f 100644
--- a/src/server/LV2Plugin.cpp
+++ b/src/server/LV2Plugin.cpp
@@ -69,7 +69,7 @@ const Raul::Symbol
LV2Plugin::symbol() const
{
string working = uri();
- if (working[working.length() - 1] == '/')
+ if (working.back() == '/')
working = working.substr(0, working.length() - 1);
while (working.length() > 0) {