summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorAlexander Levin <al.le@rockbox.org>2009-05-16 06:59:29 +0000
committerAlexander Levin <al.le@rockbox.org>2009-05-16 06:59:29 +0000
commite7ab26535aa7879f7e6f1930c5b3f509153a67bd (patch)
tree77e6bdc35db077fd1ffb3657c7e0b4a05780852d /apps
parentfd7002ae6c7d91218fe5e66f2eb7705528265f69 (diff)
downloadrockbox-e7ab26535aa7879f7e6f1930c5b3f509153a67bd.zip
rockbox-e7ab26535aa7879f7e6f1930c5b3f509153a67bd.tar.gz
rockbox-e7ab26535aa7879f7e6f1930c5b3f509153a67bd.tar.bz2
rockbox-e7ab26535aa7879f7e6f1930c5b3f509153a67bd.tar.xz
Make variables static where possible
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20955 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/albumart.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/albumart.c b/apps/recorder/albumart.c
index 92e36d9..23f2555 100644
--- a/apps/recorder/albumart.c
+++ b/apps/recorder/albumart.c
@@ -92,8 +92,8 @@ static void fix_path_part(char* path, int offset, int count)
}
#if defined(HAVE_JPEG) || defined(PLUGIN)
-const char * extensions[] = { "jpeg", "jpg", "bmp" };
-int extension_lens[] = { 4, 3, 3 };
+static const char * extensions[] = { "jpeg", "jpg", "bmp" };
+static int extension_lens[] = { 4, 3, 3 };
/* Try checking for several file extensions, return true if a file is found and
* leaving the path modified to include the matching extension.
*/