mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-02 09:01:48 -05:00
One more fix to dlsym
This commit is contained in:
parent
8bf6c1e5e6
commit
3298a54dbd
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue