Edje: Fix warning with clang

Annoying incomplete initializer warning. Apparently gcc/clang
don't consider {0} as good enough for "initialize everything to 0"
even though they do it.
This commit is contained in:
Jean-Philippe Andre 2016-03-08 14:15:45 +09:00
parent caf68f14af
commit 8ec48dc268
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ static double _edje_transition_duration_scale = 0;
static Eina_Bool
_edje_animator_cb(void *data)
{
const Eo_Event event = {0};
const Eo_Event event = { NULL, NULL, NULL };
_edje_timer_cb(data, &event);
return EINA_TRUE;
}