stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=2a9c000859129a0ebb9b2005869e2dc35a5ec2f9

commit 2a9c000859129a0ebb9b2005869e2dc35a5ec2f9
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Tue Jul 5 10:42:05 2016 +0200

    tests: ecore_audio: move _finished_cb behind PULSE guard
    
    This callback is only used from the pulse object test.
---
 src/tests/ecore/ecore_test_ecore_audio.c | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/tests/ecore/ecore_test_ecore_audio.c 
b/src/tests/ecore/ecore_test_ecore_audio.c
index dda71e3..d0e8fc5 100644
--- a/src/tests/ecore/ecore_test_ecore_audio.c
+++ b/src/tests/ecore/ecore_test_ecore_audio.c
@@ -11,6 +11,17 @@
 
 #include "ecore_suite.h"
 
+static void _finished_cb(void *data EINA_UNUSED, const Eo_Event *event 
EINA_UNUSED)
+{
+  ecore_main_loop_quit();
+}
+
+static void _looped_cb(void *data EINA_UNUSED, const Eo_Event *event)
+{
+  ecore_audio_obj_in_looped_set(event->object, EINA_FALSE);
+}
+
+#ifdef HAVE_PULSE
 static void _failed_cb(void *data, const Eo_Event *event EINA_UNUSED)
 {
   Eina_Bool *pulse_context_failed = data;
@@ -23,17 +34,6 @@ static void _failed_cb(void *data, const Eo_Event *event 
EINA_UNUSED)
   ecore_main_loop_quit();
 }
 
-static void _finished_cb(void *data EINA_UNUSED, const Eo_Event *event 
EINA_UNUSED)
-{
-  ecore_main_loop_quit();
-}
-
-static void _looped_cb(void *data EINA_UNUSED, const Eo_Event *event)
-{
-  ecore_audio_obj_in_looped_set(event->object, EINA_FALSE);
-}
-
-#ifdef HAVE_PULSE
 static Eina_Bool
 _seek_vol(void *data)
 {

-- 


Reply via email to