summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean Guyomarc'h <jean@guyomarch.bzh>2016-08-02 21:08:58 +0200
committerJean Guyomarc'h <jean@guyomarch.bzh>2016-08-02 21:12:33 +0200
commit57f95de890bd153569b15a6366dab0a764fbd967 (patch)
tree6c499513ffb4b4bf6417eaecf674a3b4110dc81e
parent871a9cff032e8802684a66eaa8a7b7bcc50f6947 (diff)
downloadefl-57f95de890bd153569b15a6366dab0a764fbd967.tar.gz
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
-rw-r--r--src/lib/ecore_audio/ecore_audio.c2
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)
#define SYM(x) \
if (!(ecore_audio_sndfile_lib->x = eina_module_symbol_get(ecore_audio_sndfile_lib->mod, #x))) { \
- ERR("Cannot find symbol '%s' in'%s", #x, eina_module_file_get(ecore_audio_pulse_lib->mod)); \
+ ERR("Cannot find symbol '%s' in'%s", #x, eina_module_file_get(ecore_audio_sndfile_lib->mod)); \
goto err; \
}
SYM(sf_open);