summaryrefslogtreecommitdiffstats
path: root/src/engine/NodeFactory.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-11-27 22:25:02 +0000
committerDavid Robillard <d@drobilla.net>2008-11-27 22:25:02 +0000
commitcb1d3b65670febd0bd5c3ac7d128f45ef0a744a4 (patch)
treef80d319e213f18578d0af8c6e288e73ff1ebef0f /src/engine/NodeFactory.cpp
parent08fc813198f67daf7ef6278c5d54b12fb63decc1 (diff)
downloadingen-cb1d3b65670febd0bd5c3ac7d128f45ef0a744a4.tar.gz
ingen-cb1d3b65670febd0bd5c3ac7d128f45ef0a744a4.tar.bz2
ingen-cb1d3b65670febd0bd5c3ac7d128f45ef0a744a4.zip
Fix warnings for non-debug builds.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1804 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/NodeFactory.cpp')
-rw-r--r--src/engine/NodeFactory.cpp17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/engine/NodeFactory.cpp b/src/engine/NodeFactory.cpp
index e75f6605..0d15907b 100644
--- a/src/engine/NodeFactory.cpp
+++ b/src/engine/NodeFactory.cpp
@@ -221,9 +221,14 @@ NodeFactory::load_ladspa_plugins()
struct dirent* pfile;
while ((pfile = readdir(pdir))) {
-
- LADSPA_Descriptor_Function df = NULL;
- LADSPA_Descriptor* descriptor = NULL;
+ union {
+ void* dp;
+ LADSPA_Descriptor_Function fp;
+ } df;
+ df.dp = NULL;
+ df.fp = NULL;
+
+ LADSPA_Descriptor* descriptor = NULL;
if (!strcmp(pfile->d_name, ".") || !strcmp(pfile->d_name, ".."))
continue;
@@ -240,8 +245,8 @@ NodeFactory::load_ladspa_plugins()
if (!plugin_library || !(*plugin_library))
continue;
- bool found = plugin_library->get_symbol("ladspa_descriptor", (void*&)df);
- if (!found || !df) {
+ bool found = plugin_library->get_symbol("ladspa_descriptor", df.dp);
+ if (!found || !df.dp) {
cerr << "WARNING: Non-LADSPA library found in LADSPA path: " <<
lib_path << endl;
// Not a LADSPA plugin library
@@ -249,7 +254,7 @@ NodeFactory::load_ladspa_plugins()
continue;
}
- for (unsigned long i=0; (descriptor = (LADSPA_Descriptor*)df(i)) != NULL; ++i) {
+ 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);