diff options
Diffstat (limited to 'apps/bookmark.c')
-rw-r--r-- | apps/bookmark.c | 8 |
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) return write_bookmark(false); } #ifdef HAVE_LCD_BITMAP - unsigned char *lines[]={ID2P(LANG_AUTO_BOOKMARK_QUERY)}; - struct text_message message={(char **)lines, 1}; + const char *lines[]={ID2P(LANG_AUTO_BOOKMARK_QUERY)}; + const struct text_message message={lines, 1}; #else - unsigned char *lines[]={ID2P(LANG_AUTO_BOOKMARK_QUERY), + const char *lines[]={ID2P(LANG_AUTO_BOOKMARK_QUERY), str(LANG_CONFIRM_WITH_BUTTON)}; - struct text_message message={(char **)lines, 2}; + const struct text_message message={lines, 2}; #endif #if LCD_DEPTH > 1 show_main_backdrop(); /* switch to main backdrop as we may come from wps */ |