From 930447c9301a5693b8c71178f7ef377f8cee106d Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Sat, 7 Jun 2008 09:12:23 +0000 Subject: oops, missed to failed hunks in the patch git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17699 a1c6a512-1295-4272-9138-f99709370657 --- apps/misc.c | 2 +- apps/misc.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/misc.c b/apps/misc.c index 65688024cc..bca66dcb54 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -1232,7 +1232,7 @@ int hex_to_rgb(const char* hex, int* color) /* '0'-'3' are ASCII 0x30 to 0x33 */ #define is0123(x) (((x) & 0xfc) == 0x30) -const char* parse_list(const char *fmt, unsigned int *set_vals, +const char* parse_list(const char *fmt, uint32_t *set_vals, const char sep, const char* str, ...) { va_list ap; diff --git a/apps/misc.h b/apps/misc.h index d0edb3dcd1..8394a6396a 100644 --- a/apps/misc.h +++ b/apps/misc.h @@ -136,7 +136,7 @@ char *strip_extension(char* buffer, int buffer_size, const char *filename); * - valid_vals: value after the call to 'parse_list' */ #define LIST_VALUE_PARSED(setvals, position) ((setvals)&(1<<(position))) -const char* parse_list(const char *fmt, unsigned int *set_vals, +const char* parse_list(const char *fmt, uint32_t *set_vals, const char sep, const char* str, ...); #endif /* MISC_H */ -- cgit v1.2.3