summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Plugin.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-03-09 17:44:36 +0100
committerDavid Robillard <d@drobilla.net>2019-04-13 15:54:05 +0200
commitcc672193b82a4b314d59aa2e572a5e9667c34f1b (patch)
tree55796d4b55304ed306acd417ebc4b39c862563fd /src/server/LV2Plugin.cpp
parentf48f9d69a541d758dc9928c0c89eae46819e660f (diff)
downloadingen-cc672193b82a4b314d59aa2e572a5e9667c34f1b.tar.gz
ingen-cc672193b82a4b314d59aa2e572a5e9667c34f1b.tar.bz2
ingen-cc672193b82a4b314d59aa2e572a5e9667c34f1b.zip
WIP: Port to serd1
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 3411fef8..00ecbdfd 100644
--- a/src/server/LV2Plugin.cpp
+++ b/src/server/LV2Plugin.cpp
@@ -68,7 +68,7 @@ LV2Plugin::update_properties()
const Raul::Symbol
LV2Plugin::symbol() const
{
- std::string working = uri();
+ std::string working(uri());
if (working.back() == '/') {
working = working.substr(0, working.length() - 1);
}