Edje: Fix uninitialized variable warning.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 78357
This commit is contained in:
Christopher Michael 2012-10-23 06:16:13 +00:00 committed by Christopher Michael
parent 74419525cf
commit ca5ce36b69
1 changed files with 1 additions and 1 deletions

View File

@ -1753,7 +1753,7 @@ _part_text_unescaped_set(Eo *obj, void *_pd, va_list *list)
Eina_Bool *ret = va_arg(*list, Eina_Bool *);
Edje *ed = _pd;
Edje_Real_Part *rp;
Eina_Bool int_ret;
Eina_Bool int_ret = EINA_FALSE;
if (ret) *ret = EINA_FALSE;
if ((!ed) || (!part)) return;