edje: Fix compiler warning about set but not used variables

When compiling src/bin/edje, we end up with compiler warnings about
'pc' variable being set but not used. This patch just comments out
(for now) those variables (as I am unsure if they are going to be used
later or not).

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-01-05 08:47:54 -05:00
parent e05ec3727c
commit 6fb35ad415
1 changed files with 4 additions and 4 deletions

View File

@ -5982,13 +5982,13 @@ st_collections_group_parts_part_physics_body(void)
static void
st_collections_group_parts_part_insert_before(void)
{
Edje_Part_Collection *pc;
/* Edje_Part_Collection *pc; */
Edje_Part_Parser *epp;
char *name;
check_arg_count(1);
pc = eina_list_data_get(eina_list_last(edje_collections));
/* pc = eina_list_data_get(eina_list_last(edje_collections)); */
name = parse_str(0);
epp = (Edje_Part_Parser *)current_part;
epp->reorder.insert_before = name;
@ -6010,13 +6010,13 @@ st_collections_group_parts_part_insert_before(void)
static void
st_collections_group_parts_part_insert_after(void)
{
Edje_Part_Collection *pc;
/* Edje_Part_Collection *pc; */
Edje_Part_Parser *epp;
char *name;
check_arg_count(1);
pc = eina_list_data_get(eina_list_last(edje_collections));
/* pc = eina_list_data_get(eina_list_last(edje_collections)); */
name = parse_str(0);
epp = (Edje_Part_Parser *)current_part;
epp->reorder.insert_after = name;