fix compiler warning - windows

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15482 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Jeff Lenk 2009-11-16 18:34:47 +00:00
parent 29cc73abe6
commit ad97aa5ec4
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}