diff options
author | Nils Wallménius <nils@rockbox.org> | 2009-08-20 16:47:44 +0000 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2009-08-20 16:47:44 +0000 |
commit | 3200d04d75c5e7556ed8880b155533e881a4d1e1 (patch) | |
tree | 188e2c9525b25cb8922a14766e51ab02bad3f831 /apps/cuesheet.c | |
parent | 0a1728444882cdbc6a0c815bd88464de25ad94e9 (diff) |
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/cuesheet.c')
-rw-r--r-- | apps/cuesheet.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/cuesheet.c b/apps/cuesheet.c index deb0769320..6f29d68716 100644 --- a/apps/cuesheet.c +++ b/apps/cuesheet.c @@ -234,10 +234,10 @@ int cue_find_current_track(struct cuesheet *cue, unsigned long curpos) } /* callback that gives list item titles for the cuesheet browser */ -static char *list_get_name_cb(int selected_item, - void *data, - char *buffer, - size_t buffer_len) +static const char* list_get_name_cb(int selected_item, + void *data, + char *buffer, + size_t buffer_len) { struct cuesheet *cue = (struct cuesheet *)data; |