From: Jean Guyomarc'h Date: Tue, 2 Aug 2016 19:08:58 +0000 (+0200) Subject: ecore_audio: use the correct module wrapper X-Git-Tag: upstream/1.20.0~4964 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=57f95de890bd153569b15a6366dab0a764fbd967;p=platform%2Fupstream%2Fefl.git 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 --- 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);