edje_multisense: fix a compiler warning for pulseaudio disable mode

Summary: `_out_fail` is not used when edje is compiled without pulseaudio.

Test Plan: meson build -Dpulseaudio=false

Reviewers: zmike, Hermet, Jaehyun_Cho

Reviewed By: Hermet

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D11361
This commit is contained in:
Yeongjong Lee 2020-02-17 15:35:57 +09:00 committed by Hermet Park
parent 0646de4f66
commit 225b8f3ad8
1 changed files with 2 additions and 0 deletions

View File

@ -13,6 +13,7 @@ _play_finished(void *data EINA_UNUSED, const Efl_Event *event)
efl_unref(event->object);
}
#if defined(_WIN32) || defined(HAVE_PULSE)
static void
_out_fail(void *data EINA_UNUSED, const Efl_Event *event)
{
@ -20,6 +21,7 @@ _out_fail(void *data EINA_UNUSED, const Efl_Event *event)
efl_unref(event->object);
out = NULL;
}
#endif
struct _edje_multisense_eet_data
{