From e79e4279ad677d2bf71cade9f9a7778dc86729d8 Mon Sep 17 00:00:00 2001 From: mom040267 Date: Sat, 24 Jan 2015 08:40:10 +0000 Subject: [PATCH] cygwin warnings fixed --- src/client/ns_turn_msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/ns_turn_msg.c b/src/client/ns_turn_msg.c index 464a581..fed7d46 100644 --- a/src/client/ns_turn_msg.c +++ b/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;