1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Nils Wallménius 2009-08-20 16:47:44 +00:00
parent 0a17284448
commit 3200d04d75
43 changed files with 191 additions and 170 deletions

View file

@ -228,7 +228,8 @@ static bool dir_properties(char* selected_file)
return true;
}
char * get_props(int selected_item, void* data, char *buffer, size_t buffer_len)
static const char * get_props(int selected_item, void* data,
char *buffer, size_t buffer_len)
{
(void)data;
@ -263,8 +264,7 @@ char * get_props(int selected_item, void* data, char *buffer, size_t buffer_len)
rb->strlcpy(buffer, its_a_dir ? "" : str_duration, buffer_len);
break;
default:
rb->strlcpy(buffer, "ERROR", buffer_len);
break;
return "ERROR";
}
return buffer;
}