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.tar.gz
rockbox-e7ab26535aa7879f7e6f1930c5b3f509153a67bd.zip
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 92e36d9113..23f25559db 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)
92} 92}
93 93
94#if defined(HAVE_JPEG) || defined(PLUGIN) 94#if defined(HAVE_JPEG) || defined(PLUGIN)
95const char * extensions[] = { "jpeg", "jpg", "bmp" }; 95static const char * extensions[] = { "jpeg", "jpg", "bmp" };
96int extension_lens[] = { 4, 3, 3 }; 96static int extension_lens[] = { 4, 3, 3 };
97/* Try checking for several file extensions, return true if a file is found and 97/* Try checking for several file extensions, return true if a file is found and
98 * leaving the path modified to include the matching extension. 98 * leaving the path modified to include the matching extension.
99 */ 99 */