summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/albumart.c2
-rw-r--r--apps/recorder/recording.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/albumart.c b/apps/recorder/albumart.c
index 5b3658a1cb..9ff9c72f80 100644
--- a/apps/recorder/albumart.c
+++ b/apps/recorder/albumart.c
@@ -98,7 +98,7 @@ static void fix_path_part(char* path, int offset, int count)
98} 98}
99 99
100#ifdef USE_JPEG_COVER 100#ifdef USE_JPEG_COVER
101static const char * extensions[] = { "jpeg", "jpg", "bmp" }; 101static const char * const extensions[] = { "jpeg", "jpg", "bmp" };
102static const unsigned char extension_lens[] = { 4, 3, 3 }; 102static const unsigned char extension_lens[] = { 4, 3, 3 };
103/* Try checking for several file extensions, return true if a file is found and 103/* Try checking for several file extensions, return true if a file is found and
104 * leaving the path modified to include the matching extension. 104 * leaving the path modified to include the matching extension.
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index a54b762566..db8d892b7c 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -189,7 +189,7 @@ static short balance_mem[BAL_MEM_SIZE];
189#define AGC_MODE_SIZE 5 189#define AGC_MODE_SIZE 5
190#define AGC_SAFETY_MODE 0 190#define AGC_SAFETY_MODE 0
191 191
192static const char* agc_preset_str[] = 192static const char* const agc_preset_str[] =
193{ "Off", "S", "L", "D", "M", "V" }; 193{ "Off", "S", "L", "D", "M", "V" };
194/* "Off", 194/* "Off",
195 "Safety (clip)", 195 "Safety (clip)",