Browse Source

cygwin warnings fixed

mom040267 11 years ago
parent
commit
e79e4279ad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/client/ns_turn_msg.c

+ 1 - 1
src/client/ns_turn_msg.c

@@ -615,7 +615,7 @@ static inline int sheadof(const char *head, const char* full, int ignore_case)
 {
 	while(*head) {
 		if(*head != *full) {
-			if(ignore_case && (tolower(*head)==tolower(*full))) {
+		  if(ignore_case && (tolower((int)*head)==tolower((int)*full))) {
 				//OK
 			} else {
 				return 0;