stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a65c531429d4903f3a498cb391f425d86e35a1bd
commit a65c531429d4903f3a498cb391f425d86e35a1bd Author: Stefan Schmidt <[email protected]> Date: Wed Aug 27 16:40:16 2014 +0200 eet_dictionary: Remove now unused variable Since 123bdc4342e0d5cc506dbe703d791d0f4b1e9227 found is now longer used here. Remove it. --- src/lib/eet/eet_dictionary.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/eet/eet_dictionary.c b/src/lib/eet/eet_dictionary.c index 9240204..779eb21 100644 --- a/src/lib/eet/eet_dictionary.c +++ b/src/lib/eet/eet_dictionary.c @@ -55,7 +55,6 @@ _eet_dictionary_lookup(Eet_Dictionary *ed, int hash, int *previous) { - Eina_Bool found = EINA_FALSE; int prev = -1; int current; @@ -69,7 +68,6 @@ _eet_dictionary_lookup(Eet_Dictionary *ed, ((ed->all[current].str == string) || (!strcmp(ed->all[current].str, string)))) { - found = EINA_TRUE; break; } } --
