Edje multisense: Fixed compilation following change to eo2.

This commit is contained in:
Tom Hacohen 2014-04-10 10:04:34 +01:00
parent 069940d026
commit f3c835d6fc
1 changed files with 4 additions and 4 deletions

View File

@ -139,7 +139,7 @@ _edje_multisense_internal_sound_sample_play(Edje *ed, const char *sample_name, c
Edje_Sound_Sample *sample; Edje_Sound_Sample *sample;
char snd_id_str[255]; char snd_id_str[255];
int i; int i;
Eina_Bool ret; Eina_Bool ret = EINA_FALSE;
if (_channel_mute(ed, channel)) return EINA_FALSE; if (_channel_mute(ed, channel)) return EINA_FALSE;
@ -215,7 +215,7 @@ _edje_multisense_internal_sound_sample_play(Edje *ed, const char *sample_name, c
eo_del(in); eo_del(in);
return EINA_FALSE; return EINA_FALSE;
} }
eo_do(out, ecore_audio_obj_out_input_attach(in, &ret)); eo_do(out, ret = ecore_audio_obj_out_input_attach(in));
if (!ret) if (!ret)
{ {
ERR("Could not attach input"); ERR("Could not attach input");
@ -241,7 +241,7 @@ _edje_multisense_internal_sound_tone_play(Edje *ed, const char *tone_name, const
#ifdef ENABLE_MULTISENSE #ifdef ENABLE_MULTISENSE
unsigned int i; unsigned int i;
Edje_Sound_Tone *tone; Edje_Sound_Tone *tone;
Eina_Bool ret; Eina_Bool ret = EINA_FALSE;
Eo *in; Eo *in;
if (!tone_name) if (!tone_name)
@ -275,7 +275,7 @@ _edje_multisense_internal_sound_tone_play(Edje *ed, const char *tone_name, const
if (out) outs++; if (out) outs++;
} }
eo_do(out, ecore_audio_obj_out_input_attach(in, &ret)); eo_do(out, ret = ecore_audio_obj_out_input_attach(in));
if (!ret) { if (!ret) {
ERR("Could not attach input"); ERR("Could not attach input");
eo_del(in); eo_del(in);