From db4fb9558535d880179701d3bc7520bc8c7d69ce Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 12 Jul 2005 11:06:38 +0000 Subject: make the ctype array unsigned so that bit 7 (octal 0200) can be set and used properly without warnings git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7120 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/plugin.h') diff --git a/apps/plugin.h b/apps/plugin.h index 36eccfe86f..c572ccbf65 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -285,7 +285,7 @@ struct plugin_api { int (*strncasecmp)(const char *s1, const char *s2, size_t n); void* (*memset)(void *dst, int c, size_t length); void* (*memcpy)(void *out, const void *in, size_t n); - const char *_ctype_; + const unsigned char *_ctype_; int (*atoi)(const char *str); char *(*strchr)(const char *s, int c); char *(*strcat)(char *s1, const char *s2); -- cgit v1.2.3