jayji pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=57f95de890bd153569b15a6366dab0a764fbd967

commit 57f95de890bd153569b15a6366dab0a764fbd967
Author: Jean Guyomarc'h <[email protected]>
Date:   Tue Aug 2 21:08:58 2016 +0200

    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
---
 src/lib/ecore_audio/ecore_audio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/ecore_audio/ecore_audio.c 
b/src/lib/ecore_audio/ecore_audio.c
index fbb5ad0..2a104eb 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);

-- 


Reply via email to