Remove unused variable.

SVN revision: 24992
This commit is contained in:
sebastid 2006-08-21 15:31:58 +00:00 committed by sebastid
parent 71b883624d
commit f09ddad1cd
1 changed files with 2 additions and 4 deletions

View File

@ -216,13 +216,11 @@ _e_app_cb_scan_hash_foreach(Evas_Hash *hash, const char *key, void *data, void *
{
E_App_Scan_Cache *sc;
E_App_Cache *ac;
char *s;
sc = fdata;
s = (char *)key;
ac = data;
/* file "s" has been deleted */
printf("Cache %s - DELETED\n", s);
printf("Cache %s - DELETED\n", key);
sc->need_rewrite = 1;
return 1;
}