Skip to content

Commit

Permalink
audio: Fix debugging message
Browse files Browse the repository at this point in the history
  • Loading branch information
sthibaul committed Mar 8, 2025
1 parent a42fd7f commit 038dc8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/spd_audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,13 @@ AudioID *spd_audio_open(const char *name, void **pars, char **error)

libname = g_strdup_printf(SPD_AUDIO_LIB_PREFIX "%s", name);
lt_h = my_dlopenextglobal(libname);
g_free(libname);
if (NULL == lt_h) {
*error =
(char *)g_strdup_printf("Cannot open plugin %s in %s/%s. error: %s",
name, plugin_dir, libname, lt_dlerror());
return (AudioID *) NULL;
}
g_free(libname);

fn = lt_dlsym(lt_h, SPD_AUDIO_PLUGIN_ENTRY_STR);
#endif
Expand Down

0 comments on commit 038dc8f

Please sign in to comment.