summaryrefslogtreecommitdiff
path: root/apps/bookmark.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/bookmark.c')
-rw-r--r--apps/bookmark.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index 5b92767796..cee9abdfa8 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -86,10 +86,10 @@ static bool parse_bookmark(const char *bookmark,
86 bool *shuffle, 86 bool *shuffle,
87 char* file_name); 87 char* file_name);
88static int buffer_bookmarks(struct bookmark_list* bookmarks, int first_line); 88static int buffer_bookmarks(struct bookmark_list* bookmarks, int first_line);
89static char* get_bookmark_info(int list_index, 89static const char* get_bookmark_info(int list_index,
90 void* data, 90 void* data,
91 char *buffer, 91 char *buffer,
92 size_t buffer_len); 92 size_t buffer_len);
93static char* select_bookmark(const char* bookmark_file_name, bool show_dont_resume); 93static char* select_bookmark(const char* bookmark_file_name, bool show_dont_resume);
94static bool system_check(void); 94static bool system_check(void);
95static bool write_bookmark(bool create_bookmark_file, const char *bookmark); 95static bool write_bookmark(bool create_bookmark_file, const char *bookmark);
@@ -515,10 +515,10 @@ static int buffer_bookmarks(struct bookmark_list* bookmarks, int first_line)
515 return bookmarks->start + bookmarks->count; 515 return bookmarks->start + bookmarks->count;
516} 516}
517 517
518static char* get_bookmark_info(int list_index, 518static const char* get_bookmark_info(int list_index,
519 void* data, 519 void* data,
520 char *buffer, 520 char *buffer,
521 size_t buffer_len) 521 size_t buffer_len)
522{ 522{
523 struct bookmark_list* bookmarks = (struct bookmark_list*) data; 523 struct bookmark_list* bookmarks = (struct bookmark_list*) data;
524 int index = list_index / 2; 524 int index = list_index / 2;