summaryrefslogtreecommitdiffstats
path: root/src/engine
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-06-14 23:39:09 +0000
committerDavid Robillard <d@drobilla.net>2009-06-14 23:39:09 +0000
commit3c30e2d37a829d603ab309fa2033610a17d8f0ef (patch)
treec1e4c1460af741fc1c74baf4691b85057143faad /src/engine
parent9851334e79a585775d9e57e270fc00f497eaaf84 (diff)
downloadingen-3c30e2d37a829d603ab309fa2033610a17d8f0ef.tar.gz
ingen-3c30e2d37a829d603ab309fa2033610a17d8f0ef.tar.bz2
ingen-3c30e2d37a829d603ab309fa2033610a17d8f0ef.zip
Fix whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2108 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/NodeFactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/NodeFactory.cpp b/src/engine/NodeFactory.cpp
index f9a468cc..8b2e93d9 100644
--- a/src/engine/NodeFactory.cpp
+++ b/src/engine/NodeFactory.cpp
@@ -199,7 +199,7 @@ NodeFactory::load_ladspa_plugins()
char* env_ladspa_path = getenv("LADSPA_PATH");
string ladspa_path;
if (!env_ladspa_path) {
- cerr << "[NodeFactory] LADSPA_PATH is empty. Assuming /usr/lib/ladspa:/usr/local/lib/ladspa:~/.ladspa" << endl;
+ cerr << "[NodeFactory] LADSPA_PATH is empty. Assuming /usr/lib/ladspa:/usr/local/lib/ladspa:~/.ladspa" << endl;
ladspa_path = string("/usr/lib/ladspa:/usr/local/lib/ladspa:").append(
getenv("HOME")).append("/.ladspa");
} else {
@@ -258,7 +258,7 @@ NodeFactory::load_ladspa_plugins()
for (unsigned long i=0; (descriptor = (LADSPA_Descriptor*)df.fp(i)) != NULL; ++i) {
char id_str[11];
snprintf(id_str, 11, "%lu", descriptor->UniqueID);
- const string uri = string("ladspa:").append(id_str);
+ const string uri = string("urn:ladspa:").append(id_str);
const Plugins::const_iterator i = _plugins.find(uri);