From 8123b3ff3aee3a161723c06a0d88141a0e8b7841 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 2 Aug 2020 12:19:54 +0200 Subject: Fix shadow warnings --- src/client/ClientStore.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client/ClientStore.cpp') diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp index 74b307a5..1320de27 100644 --- a/src/client/ClientStore.cpp +++ b/src/client/ClientStore.cpp @@ -313,10 +313,10 @@ ClientStore::operator()(const Put& msg) SPtr plug; if (p->second.is_valid() && (p->second.type() == _uris.forge.URI || p->second.type() == _uris.forge.URID)) { - const URI uri(_uris.forge.str(p->second, false)); - if (!(plug = _plugin(uri))) { + const URI plugin_uri(_uris.forge.str(p->second, false)); + if (!(plug = _plugin(plugin_uri))) { plug = std::make_shared(uris(), - uri, + plugin_uri, Atom(), Properties()); add_plugin(plug); -- cgit v1.2.1