summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/radio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index e103c6bc82..522f1dac93 100644
--- a/apps/recorder/radio.c
+++ b/apps/recorder/radio.c
@@ -136,11 +136,11 @@ static int scan_presets(void);
136 136
137/* Function to manipulate all yesno dialogues. 137/* Function to manipulate all yesno dialogues.
138 This function needs the output text as an argument. */ 138 This function needs the output text as an argument. */
139static bool yesno_pop(char* text) 139static bool yesno_pop(const char* text)
140{ 140{
141 int i; 141 int i;
142 char *lines[]={text}; 142 const char *lines[]={text};
143 struct text_message message={lines, 1}; 143 const struct text_message message={lines, 1};
144 bool ret = (gui_syncyesno_run(&message,NULL,NULL)== YESNO_YES); 144 bool ret = (gui_syncyesno_run(&message,NULL,NULL)== YESNO_YES);
145 FOR_NB_SCREENS(i) 145 FOR_NB_SCREENS(i)
146 gui_textarea_clear(&screens[i]); 146 gui_textarea_clear(&screens[i]);