fix windows compiler warning-error: unsigned vs signed comparison

git-svn-id: http://svn.openzap.org/svn/openzap/trunk@855 a93c3328-9c30-0410-af19-c9cd2b2d52af
This commit is contained in:
Moises Silva 2009-11-11 20:19:39 +00:00
parent 1e5fefeab8
commit 3bbcd5369a
1 changed files with 1 additions and 1 deletions

View File

@ -705,7 +705,7 @@ OZ_DECLARE(void) zap_channel_rotate_tokens(zap_channel_t *zchan)
OZ_DECLARE(void) zap_channel_replace_token(zap_channel_t *zchan, const char *old_token, const char *new_token)
{
int i;
unsigned int i;
if (zchan->token_count) {
for(i = 0; i < zchan->token_count; i++) {