From 7649e9de077744968f7937749f157be9e87707da Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 23 Dec 2008 21:06:05 +0000 Subject: [PATCH] Remove a masking with index() The binding-pool test unit had a variable masking the index() function declared inside string.h. --- tests/conform/test-binding-pool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conform/test-binding-pool.c b/tests/conform/test-binding-pool.c index 4a6f4ebaa..9f7f24486 100644 --- a/tests/conform/test-binding-pool.c +++ b/tests/conform/test-binding-pool.c @@ -260,9 +260,9 @@ on_activate (KeyGroup *key_group, ClutterActor *child, gpointer data) { - gint index = GPOINTER_TO_INT (data); + gint _index = GPOINTER_TO_INT (data); - g_assert_cmpint (key_group->selected_index, ==, index); + g_assert_cmpint (key_group->selected_index, ==, _index); } void