From: Jeff Lenk Date: Mon, 16 Nov 2009 18:34:47 +0000 (+0000) Subject: fix compiler warning - windows X-Git-Tag: v1.0.6~1400 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad97aa5ec4bffae64639570de035a247a50a3398;p=thirdparty%2Ffreeswitch.git fix compiler warning - windows git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15482 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/include/switch_utils.h b/src/include/switch_utils.h index e5f3b592dd..a9b9ac0281 100644 --- a/src/include/switch_utils.h +++ b/src/include/switch_utils.h @@ -321,7 +321,7 @@ static inline char *switch_sanitize_number(char *number) while((q = strrchr(p, '@'))) *q = '\0'; - for(i = 0; i < strlen(warp); i++) { + for(i = 0; i < (int)strlen(warp); i++) { while(p && (q = strchr(p, warp[i]))) p = q + 1; }