eet_dictionary: Remove now unused variable
authorStefan Schmidt <s.schmidt@samsung.com>
Wed, 27 Aug 2014 14:40:16 +0000 (16:40 +0200)
committerStefan Schmidt <s.schmidt@samsung.com>
Wed, 27 Aug 2014 14:40:16 +0000 (16:40 +0200)
Since 123bdc4342e0d5cc506dbe703d791d0f4b1e9227 found is now longer used here.
Remove it.

src/lib/eet/eet_dictionary.c

index 92402048a1c47935652c7643aabe5da579fb9ac8..779eb216aab0c293eb8b558186a1b1ed2665ed4f 100644 (file)
@@ -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;
                }
           }