edje: fix warning raised by clang

Clang was not happy with the initialization of
the structure.
This commit is contained in:
Jean Guyomarc'h 2016-08-22 14:44:43 +02:00 committed by Jean Guyomarc'h
parent 84679d3173
commit 4285fc1dda
1 changed files with 1 additions and 1 deletions

View File

@ -3984,7 +3984,7 @@ _edje_part_recalc(Edje *ed, Edje_Real_Part *ep, int flags, Edje_Calc_Params *sta
Edje_Real_Part *confine_to = NULL;
Edje_Real_Part *threshold = NULL;
FLOAT_T pos = ZERO, pos2;
Edje_Calc_Params lp3 = { 0 };
Edje_Calc_Params lp3 = { {0} };
Evas_Coord mmw = 0, mmh = 0;
Eina_Bool map_colors_free = EINA_FALSE;