summaryrefslogtreecommitdiff
path: root/apps/bookmark.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/bookmark.c')
-rw-r--r--apps/bookmark.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index 30102bb954..13c9abe936 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -187,12 +187,12 @@ bool bookmark_autobookmark(void)
187 return write_bookmark(false); 187 return write_bookmark(false);
188 } 188 }
189#ifdef HAVE_LCD_BITMAP 189#ifdef HAVE_LCD_BITMAP
190 unsigned char *lines[]={ID2P(LANG_AUTO_BOOKMARK_QUERY)}; 190 const char *lines[]={ID2P(LANG_AUTO_BOOKMARK_QUERY)};
191 struct text_message message={(char **)lines, 1}; 191 const struct text_message message={lines, 1};
192#else 192#else
193 unsigned char *lines[]={ID2P(LANG_AUTO_BOOKMARK_QUERY), 193 const char *lines[]={ID2P(LANG_AUTO_BOOKMARK_QUERY),
194 str(LANG_CONFIRM_WITH_BUTTON)}; 194 str(LANG_CONFIRM_WITH_BUTTON)};
195 struct text_message message={(char **)lines, 2}; 195 const struct text_message message={lines, 2};
196#endif 196#endif
197#if LCD_DEPTH > 1 197#if LCD_DEPTH > 1
198 show_main_backdrop(); /* switch to main backdrop as we may come from wps */ 198 show_main_backdrop(); /* switch to main backdrop as we may come from wps */