From: sachiel Date: Fri, 13 Aug 2010 20:40:27 +0000 (+0000) Subject: Shuting up GCC warnings! X-Git-Tag: submit/2.0alpha-wayland/20121127.221958~1120 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dbdcd00d15070ecd5e4a1e874c6342f864d51a08;p=profile%2Fivi%2Fedje.git Shuting up GCC warnings! git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@51098 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- 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;