diff options
author | Xavier Chantry <shiningxc@gmail.com> | 2009-09-26 00:58:42 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-10-11 22:12:20 +0200 |
commit | caea098c2191a2d94a28e90bfef958c34473a5a4 (patch) | |
tree | f27ec0455b22930ae74ee6eb4386eef6e2d9a447 /src | |
parent | 35bbc96b99a8f9c8534b20d0ff7a30526b7d957d (diff) | |
download | pacman-caea098c2191a2d94a28e90bfef958c34473a5a4.tar.gz pacman-caea098c2191a2d94a28e90bfef958c34473a5a4.tar.xz |
cygwin fix : use unsigned char for ctype function
See http://www.nabble.com/-PATCH-RFA--Distinguish-between-EOF-and-character-with-value-0xff-td23161772.html#a23188494
cygwin 1.7 actually displays a warning when using signed char with the ctype
function, so that compilation fails when using -Wall -Werror.
So we just cast all arguments to unsigned char.
Signed-off-by: Xavier Chantry <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pacman/util.c b/src/pacman/util.c index 0351556e..da2000ea 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -297,7 +297,7 @@ char *strtoupper(char *str) char *ptr = str; while(*ptr) { - (*ptr) = toupper(*ptr); + (*ptr) = toupper((unsigned char)*ptr); ptr++; } return str; @@ -314,7 +314,7 @@ char *strtrim(char *str) return(str); } - while(isspace(*pch)) { + while(isspace((unsigned char)*pch)) { pch++; } if(pch != str) { @@ -327,7 +327,7 @@ char *strtrim(char *str) } pch = (str + (strlen(str) - 1)); - while(isspace(*pch)) { + while(isspace((unsigned char)*pch)) { pch--; } *++pch = '\0'; |