diff options
author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-17 07:25:49 +0000 |
---|---|---|
committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-17 07:25:49 +0000 |
commit | 4541ae9b5ca8f4f9d13df228392080506395ef37 (patch) | |
tree | 93a2c0f0080082c4b21b31e448b88d18e3377fe6 | |
parent | 313eaf8e3730bf0966560b18d35fc3b53076ce51 (diff) |
remove unused fh from create_albumart_cache
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19781 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/plugins/pictureflow.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/plugins/pictureflow.c b/apps/plugins/pictureflow.c index acae82a2f5..320e39c842 100644 --- a/apps/plugins/pictureflow.c +++ b/apps/plugins/pictureflow.c @@ -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; } |