From dbdcd00d15070ecd5e4a1e874c6342f864d51a08 Mon Sep 17 00:00:00 2001 From: sachiel Date: Fri, 13 Aug 2010 20:40:27 +0000 Subject: [PATCH] Shuting up GCC warnings! git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@51098 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/edje_embryo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/edje_embryo.c b/src/lib/edje_embryo.c index b265b0b..96e9cb8 100644 --- a/src/lib/edje_embryo.c +++ b/src/lib/edje_embryo.c @@ -2368,7 +2368,7 @@ _edje_embryo_fn_get_state_val(Embryo_Program *ep, Embryo_Cell *params) text = (Edje_Part_Description_Text*) rp->custom->description; - s = text->text.text.str; + s = (char *)text->text.text.str; SETSTRALLOCATE(s); break; @@ -2400,7 +2400,7 @@ _edje_embryo_fn_get_state_val(Embryo_Program *ep, Embryo_Cell *params) text = (Edje_Part_Description_Text*) rp->custom->description; - s = text->text.font.str; + s = (char *)text->text.font.str; SETSTRALLOCATE(s); break; @@ -2415,7 +2415,7 @@ _edje_embryo_fn_get_state_val(Embryo_Program *ep, Embryo_Cell *params) text = (Edje_Part_Description_Text*) rp->custom->description; - s = text->text.style.str; + s = (char *)text->text.style.str; SETSTRALLOCATE(s); break; -- 2.7.4