summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-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 */