1
0
Fork 0
forked from len0rd/rockbox

oops, missed to failed hunks in the patch

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17699 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2008-06-07 09:12:23 +00:00
parent ae49b387bf
commit 930447c930
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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 */