raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=8392fc4769466700fc9644c734ad5b010be28655
commit 8392fc4769466700fc9644c734ad5b010be28655 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Sun May 10 18:11:43 2020 +0100 emix - fix symbols to point to correct extern sym --- src/modules/mixer/lib/emix.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/mixer/lib/emix.c b/src/modules/mixer/lib/emix.c index 65f9cb33f..cb8ea128b 100644 --- a/src/modules/mixer/lib/emix.c +++ b/src/modules/mixer/lib/emix.c @@ -5,12 +5,12 @@ #include "emix.h" #ifdef HAVE_PULSE -E_API Emix_Backend *emix_backend_pulse_get(void); -E_API const char *emix_backend_pulse_name; +E_API Emix_Backend *emix_backend_pulse_get(void); +E_API extern const char *emix_backend_pulse_name; #endif #ifdef HAVE_ALSA -E_API Emix_Backend *emix_backend_alsa_get(void); -E_API const char *emix_backend_alsa_name; +E_API Emix_Backend *emix_backend_alsa_get(void); +E_API extern const char *emix_backend_alsa_name; #endif static int _log_domain; --
