summaryrefslogtreecommitdiffstats
path: root/src/engine/LADSPAPlugin.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/LADSPAPlugin.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/LADSPAPlugin.cpp')
-rw-r--r--src/engine/LADSPAPlugin.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/engine/LADSPAPlugin.cpp b/src/engine/LADSPAPlugin.cpp
index 4a0b5c14..38db3164 100644
--- a/src/engine/LADSPAPlugin.cpp
+++ b/src/engine/LADSPAPlugin.cpp
@@ -40,21 +40,27 @@ LADSPAPlugin::instantiate(const string& name,
SampleCount srate = engine.audio_driver()->sample_rate();
SampleCount buffer_size = engine.audio_driver()->buffer_size();
- LADSPA_Descriptor_Function df = NULL;
+ union {
+ void* dp;
+ LADSPA_Descriptor_Function fp;
+ } df;
+ df.dp = NULL;
+ df.fp = NULL;
+
LADSPANode* n = NULL;
load(); // FIXME: unload at some point
assert(_module);
assert(*_module);
- if (!_module->get_symbol("ladspa_descriptor", (void*&)df)) {
+ if (!_module->get_symbol("ladspa_descriptor", df.dp)) {
cerr << "Looks like this isn't a LADSPA plugin." << endl;
return NULL;
}
// Attempt to find the plugin in library
LADSPA_Descriptor* descriptor = NULL;
- 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) {
if (descriptor->UniqueID == _id) {
break;
}