From 8a7b893dceee555a9333fcb558f65fdaea13e867 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Sun, 28 Oct 2012 10:32:20 +0000 Subject: [PATCH] E: Fix warning: variable 'lp' set but not used Signed-off-by: Christopher Michael SVN revision: 78583 --- src/modules/comp/e_mod_config.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/comp/e_mod_config.c b/src/modules/comp/e_mod_config.c index 36dc9bbcc..bca2e8099 100644 --- a/src/modules/comp/e_mod_config.c +++ b/src/modules/comp/e_mod_config.c @@ -573,11 +573,10 @@ static void _match_list_del(Eina_List **list, Match_Config *m) { - Eina_List *l, *lp; + Eina_List *l; l = eina_list_data_find_list(*list, m); if (!l) return; - lp = l->next; *list = eina_list_remove_list(*list, l); _match_free(m); }