From 06c94126fed3fbe36f0c1b8f49add1356225b55e Mon Sep 17 00:00:00 2001 From: Yeongjong Lee Date: Thu, 20 Feb 2020 16:28:52 +0900 Subject: [PATCH] edje_cc_out: correct comment pair Fixes following compiler warning. ``` ../src/bin/edje/edje_cc_out.c:751:9: warning: "/*" within comment [-Wcomment] 751 | /* ``` @tizen_fix Change-Id: I21c88ac97892a2e9ce5ed0b4ab91f2a4c3359aa1 --- src/bin/edje/edje_cc_out.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/bin/edje/edje_cc_out.c b/src/bin/edje/edje_cc_out.c index b697db4..352a727 100644 --- a/src/bin/edje/edje_cc_out.c +++ b/src/bin/edje/edje_cc_out.c @@ -746,13 +746,15 @@ check_program(Edje_Part_Collection *pc, Edje_Program *ep, Eet_File *ef) Comment out this code because it is not actually used. If this code needs to be used again, we need a guide to fix the code in edc. + */ +#if 0 EINA_LIST_FOREACH(ep->targets, l, et) { /* * we are accessing part with an id, * if actions is ACTION_STOP or ACTION_TYPE_SCRIPT, then id is from the parts array. * In order to not crash here, we should continue here. - * + */ if (ep->action != EDJE_ACTION_TYPE_ACTION_STOP || ep->action != EDJE_ACTION_TYPE_SCRIPT) continue; @@ -774,7 +776,9 @@ check_program(Edje_Part_Collection *pc, Edje_Program *ep, Eet_File *ef) } ep->source = mem_strdup(pc->parts[camera_id]->name); } - }*/ + } +#endif + // } /* reset part counters for alias */ -- 2.7.4