From f05fdb6085e811b9c78260442dce3f0d24a0f012 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Briano?= Date: Fri, 13 Aug 2010 20:40:27 +0000 Subject: [PATCH] Shuting up GCC warnings! SVN revision: 51098 --- legacy/edje/src/lib/edje_embryo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/edje/src/lib/edje_embryo.c b/legacy/edje/src/lib/edje_embryo.c index b265b0b938..96e9cb8b64 100644 --- a/legacy/edje/src/lib/edje_embryo.c +++ b/legacy/edje/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;