summaryrefslogtreecommitdiff
path: root/apps/bookmark.c
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2009-08-20 16:47:44 +0000
committerNils Wallménius <nils@rockbox.org>2009-08-20 16:47:44 +0000
commit3200d04d75c5e7556ed8880b155533e881a4d1e1 (patch)
tree188e2c9525b25cb8922a14766e51ab02bad3f831 /apps/bookmark.c
parent0a1728444882cdbc6a0c815bd88464de25ad94e9 (diff)
downloadrockbox-3200d04d75c5e7556ed8880b155533e881a4d1e1.tar.gz
rockbox-3200d04d75c5e7556ed8880b155533e881a4d1e1.zip
Make the formatter functions used by the settings return a pointer to avoid usless copying of lang strings, this brought with it a long chain of const correctness and a few random cleanups
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22440 a1c6a512-1295-4272-9138-f99709370657
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;