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 /apps/plugins | |
| parent | 313eaf8e3730bf0966560b18d35fc3b53076ce51 (diff) | |
| download | rockbox-4541ae9b5ca8f4f9d13df228392080506395ef37.zip rockbox-4541ae9b5ca8f4f9d13df228392080506395ef37.tar.gz rockbox-4541ae9b5ca8f4f9d13df228392080506395ef37.tar.bz2 rockbox-4541ae9b5ca8f4f9d13df228392080506395ef37.tar.xz | |
remove unused fh from create_albumart_cache
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19781 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -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 acae82a..320e39c 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; } |