remove unused fh from create_albumart_cache

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19781 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andrew Mahone 2009-01-17 07:25:49 +00:00
parent 313eaf8e37
commit 4541ae9b5c

View file

@ -620,7 +620,7 @@ void draw_progressbar(int step)
*/
bool create_albumart_cache(void)
{
int fh,ret;
int ret;
int i, slides = 0;
struct bitmap input_bmp;
@ -666,7 +666,6 @@ bool create_albumart_cache(void)
}
cache_version = CACHE_VERSION;
configfile_save(CONFIG_FILE, config, CONFIG_NUM_ITEMS, CONFIG_VERSION);
rb->close(fh);
return true;
}