From 57f95de890bd153569b15a6366dab0a764fbd967 Mon Sep 17 00:00:00 2001 From: Jean Guyomarc'h Date: Tue, 2 Aug 2016 21:08:58 +0200 Subject: [PATCH] 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 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);