diff options
author | Jean Guyomarc'h <jean@guyomarch.bzh> | 2016-08-02 21:08:58 +0200 |
---|---|---|
committer | Jean Guyomarc'h <jean@guyomarch.bzh> | 2016-08-02 21:12:33 +0200 |
commit | 57f95de890bd153569b15a6366dab0a764fbd967 (patch) | |
tree | 6c499513ffb4b4bf6417eaecf674a3b4110dc81e /src | |
parent | 871a9cff032e8802684a66eaa8a7b7bcc50f6947 (diff) |
ecore_audio: use the correct module wrapper
This was code for sndfile. sndfile module should have been
used instead of the pulseaudio one.
It led to a build break when having sndfile but not pulseaudio.
Ref: 879d93377b219dca00be63f8139fee79b7938147
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ecore_audio/ecore_audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_audio/ecore_audio.c b/src/lib/ecore_audio/ecore_audio.c index fbb5ad0ee5..2a104eb36d 100644 --- a/src/lib/ecore_audio/ecore_audio.c +++ b/src/lib/ecore_audio/ecore_audio.c | |||
@@ -225,7 +225,7 @@ ecore_audio_sndfile_lib_load(void) | |||
225 | 225 | ||
226 | #define SYM(x) \ | 226 | #define SYM(x) \ |
227 | if (!(ecore_audio_sndfile_lib->x = eina_module_symbol_get(ecore_audio_sndfile_lib->mod, #x))) { \ | 227 | if (!(ecore_audio_sndfile_lib->x = eina_module_symbol_get(ecore_audio_sndfile_lib->mod, #x))) { \ |
228 | ERR("Cannot find symbol '%s' in'%s", #x, eina_module_file_get(ecore_audio_pulse_lib->mod)); \ | 228 | ERR("Cannot find symbol '%s' in'%s", #x, eina_module_file_get(ecore_audio_sndfile_lib->mod)); \ |
229 | goto err; \ | 229 | goto err; \ |
230 | } | 230 | } |
231 | SYM(sf_open); | 231 | SYM(sf_open); |