diff options
Diffstat (limited to 'apps/settings.h')
-rw-r--r-- | apps/settings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings.h b/apps/settings.h index 8d9646ff6d..0dd21a33eb 100644 --- a/apps/settings.h +++ b/apps/settings.h | |||
@@ -275,12 +275,12 @@ bool set_option(const char* string, void* variable, enum optiontype type, | |||
275 | bool set_int(const unsigned char* string, const char* unit, int voice_unit, | 275 | bool set_int(const unsigned char* string, const char* unit, int voice_unit, |
276 | int* variable, | 276 | int* variable, |
277 | void (*function)(int), int step, int min, int max, | 277 | void (*function)(int), int step, int min, int max, |
278 | void (*formatter)(char*, int, int, const char*) ); | 278 | void (*formatter)(char*, size_t, int, const char*) ); |
279 | /* use this one if you need to create a lang from the value (i.e with TALK_ID()) */ | 279 | /* use this one if you need to create a lang from the value (i.e with TALK_ID()) */ |
280 | bool set_int_ex(const unsigned char* string, const char* unit, int voice_unit, | 280 | bool set_int_ex(const unsigned char* string, const char* unit, int voice_unit, |
281 | int* variable, | 281 | int* variable, |
282 | void (*function)(int), int step, int min, int max, | 282 | void (*function)(int), int step, int min, int max, |
283 | void (*formatter)(char*, int, int, const char*), | 283 | void (*formatter)(char*, size_t, int, const char*), |
284 | long (*get_talk_id)(int)); | 284 | long (*get_talk_id)(int)); |
285 | 285 | ||
286 | /* the following are either not in setting.c or shouldnt be */ | 286 | /* the following are either not in setting.c or shouldnt be */ |