eet_dictionary: Remove now unused variable

Since 123bdc4342 found is now longer used here.
Remove it.
This commit is contained in:
Stefan Schmidt 2014-08-27 16:40:16 +02:00
parent 686acd88f7
commit a65c531429
1 changed files with 0 additions and 2 deletions

View 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;
}
}