summaryrefslogtreecommitdiff
path: root/apps/recorder/recording.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/recording.c')
-rw-r--r--apps/recorder/recording.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 242351a0d6..20b5fa016f 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -56,7 +56,7 @@ bool f3_rec_screen(void);
56#define SOURCE_LINE 1 56#define SOURCE_LINE 1
57#define SOURCE_SPDIF 2 57#define SOURCE_SPDIF 2
58 58
59char *freq_str[6] = 59const char* const freq_str[6] =
60{ 60{
61 "44.1kHz", 61 "44.1kHz",
62 "48kHz", 62 "48kHz",
@@ -79,7 +79,7 @@ static void set_gain(void)
79 } 79 }
80} 80}
81 81
82static char *fmtstr[] = 82static const char* const fmtstr[] =
83{ 83{
84 "", /* no decimals */ 84 "", /* no decimals */
85 "%d.%d %s ", /* 1 decimal */ 85 "%d.%d %s ", /* 1 decimal */
@@ -632,7 +632,7 @@ bool f2_rec_screen(void)
632 lcd_getstringsize("A",&w,&h); 632 lcd_getstringsize("A",&w,&h);
633 633
634 while (!exit) { 634 while (!exit) {
635 char* ptr=NULL; 635 const char* ptr=NULL;
636 636
637 lcd_clear_display(); 637 lcd_clear_display();
638 638