summaryrefslogtreecommitdiff
path: root/apps/root_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/root_menu.c')
-rw-r--r--apps/root_menu.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/root_menu.c b/apps/root_menu.c
index dcbd95c23f..378b776b81 100644
--- a/apps/root_menu.c
+++ b/apps/root_menu.c
@@ -143,8 +143,9 @@ static int browser(void* param)
143 { 143 {
144 /* Prompt the user */ 144 /* Prompt the user */
145 reinit_attempted = true; 145 reinit_attempted = true;
146 char *lines[]={ID2P(LANG_TAGCACHE_BUSY), ID2P(LANG_TAGCACHE_FORCE_UPDATE)}; 146 static const char *lines[]={
147 struct text_message message={lines, 2}; 147 ID2P(LANG_TAGCACHE_BUSY), ID2P(LANG_TAGCACHE_FORCE_UPDATE)};
148 static const struct text_message message={lines, 2};
148 if(gui_syncyesno_run(&message, NULL, NULL) == YESNO_NO) 149 if(gui_syncyesno_run(&message, NULL, NULL) == YESNO_NO)
149 break; 150 break;
150 int i; 151 int i;