1
0
Fork 0
forked from len0rd/rockbox

Use size_t type for the buffer_size parameter to formatter functions, static two private functions

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14392 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2007-08-19 10:22:46 +00:00
parent 24b85ff1e3
commit 9b59183953
9 changed files with 25 additions and 25 deletions

View file

@ -516,7 +516,7 @@ struct plugin_api {
void (*function)(bool));
bool (*set_int)(const unsigned char* string, const char* unit, int voice_unit,
int* variable, void (*function)(int), int step, int min,
int max, void (*formatter)(char*, int, int, const char*) );
int max, void (*formatter)(char*, size_t, int, const char*) );
bool (*set_bool)(const char* string, bool* variable );
#ifdef HAVE_LCD_COLOR