Ignore:
Timestamp:
Aug 6, 2010 7:18:08 AM (14 years ago)
Author:
nanang
Message:

Misc (re #1068): fix compile errors/warnings on Symbian S60 5th ed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c

    r3243 r3255  
    13081308        /* First stage, get the maximum wait time */ 
    13091309        max_wait = 100; 
    1310         for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) { 
     1310        for (i=0; i<(int)PJ_ARRAY_SIZE(pjsua_var.acc); ++i) { 
    13111311            if (!pjsua_var.acc[i].valid) 
    13121312                continue; 
     
    13321332 
    13331333        /* Third stage, forcefully destroy unfinished unpublications */ 
    1334         for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) { 
     1334        for (i=0; i<(int)PJ_ARRAY_SIZE(pjsua_var.acc); ++i) { 
    13351335            if (pjsua_var.acc[i].publish_sess) { 
    13361336                pjsip_publishc_destroy(pjsua_var.acc[i].publish_sess); 
     
    13621362        /* First stage, get the maximum wait time */ 
    13631363        max_wait = 100; 
    1364         for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) { 
     1364        for (i=0; i<(int)PJ_ARRAY_SIZE(pjsua_var.acc); ++i) { 
    13651365            if (!pjsua_var.acc[i].valid) 
    13661366                continue; 
Note: See TracChangeset for help on using the changeset viewer.