summaryrefslogtreecommitdiff
path: root/apps/recorder/recording.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2022-05-03 22:54:33 -0400
committerWilliam Wilgus <me.theuser@yahoo.com>2022-05-03 23:00:58 -0400
commit79864c6ec22370ae31d3259a17e0c93db3cdae61 (patch)
tree6de3a54700d84db34eab150740006dd74d359cd2 /apps/recorder/recording.c
parent4dd3c2b33ec3d181f54cc1bcf5b596401a8cfcbb (diff)
downloadrockbox-79864c6ec22370ae31d3259a17e0c93db3cdae61.tar.gz
rockbox-79864c6ec22370ae31d3259a17e0c93db3cdae61.zip
add const to const * strings
I don't think this will amke any difference except maybe for hosted ports Change-Id: I84f898aea92a6963901a6d889dd18b63f24c9a41
Diffstat (limited to 'apps/recorder/recording.c')
-rw-r--r--apps/recorder/recording.c2
1 files changed, 1 insertions, 1 deletions
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)",