]> git.alsa-project.org Git - alsa-lib.git/commitdiff
One more fix to dlsym
authorJaroslav Kysela <perex@perex.cz>
Sat, 14 Jun 2003 07:38:28 +0000 (07:38 +0000)
committerJaroslav Kysela <perex@perex.cz>
Sat, 14 Jun 2003 07:38:28 +0000 (07:38 +0000)
src/pcm/pcm_ladspa.c

index f96cf1b8bedebe72cb725a182b176bb397135e81..235162931340ee1724d4d519b3c780f1e3601ea2 100644 (file)
@@ -722,7 +722,7 @@ static int snd_pcm_ladspa_check_file(snd_pcm_ladspa_plugin_t * const plugin,
        assert(filename);
        handle = dlopen(filename, RTLD_LAZY);
        if (handle) {
-               LADSPA_Descriptor_Function fcn = (LADSPA_Descriptor_Function)dlsym(handle, "ladspa_descriptor", SND_DLSYM_VERSION(SND_PCM_DLSYM_VERSION));
+               LADSPA_Descriptor_Function fcn = (LADSPA_Descriptor_Function)dlsym(handle, "ladspa_descriptor");
                if (fcn) {
                        long idx;
                        const LADSPA_Descriptor *d;