diff options
| author | Nils Wallménius <nils@rockbox.org> | 2007-08-19 10:22:46 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2007-08-19 10:22:46 +0000 |
| commit | 9b591839531b77948b19191a50f816a6806e20e5 (patch) | |
| tree | 06a08ff0926403f2e507e51f3ce708d4df7b81b1 /apps/plugin.h | |
| parent | 24b85ff1e3481abaa2271b26a64131c52fd36322 (diff) | |
| download | rockbox-9b591839531b77948b19191a50f816a6806e20e5.zip rockbox-9b591839531b77948b19191a50f816a6806e20e5.tar.gz rockbox-9b591839531b77948b19191a50f816a6806e20e5.tar.bz2 rockbox-9b591839531b77948b19191a50f816a6806e20e5.tar.xz | |
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
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index b3db0a9..c3e5a5b 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -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 |