From e7ab26535aa7879f7e6f1930c5b3f509153a67bd Mon Sep 17 00:00:00 2001 From: Alexander Levin Date: Sat, 16 May 2009 06:59:29 +0000 Subject: Make variables static where possible git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20955 a1c6a512-1295-4272-9138-f99709370657 --- apps/recorder/albumart.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/recorder') 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) } #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. */ -- cgit v1.2.3