Ignore:
Timestamp:
Mar 5, 2013 3:12:32 AM (12 years ago)
Author:
riza
Message:

Misc (re #1559): fixed compile errors/warnings on MSVC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/src/pjnath-test/ice_test.c

    r4360 r4412  
    468468                                    } \ 
    469469                                    PJ_TIME_VAL_SUB(t, t0); \ 
    470                                     if (PJ_TIME_VAL_MSEC(t) >= (timeout)) break; \ 
     470                                    if ((unsigned)PJ_TIME_VAL_MSEC(t) >= (timeout)) \ 
     471                                        break; \ 
    471472                                } \ 
    472473                            } 
     
    10161017int ice_conc_test(void) 
    10171018{ 
    1018     const int LOOP = 100; 
     1019    const unsigned LOOP = 100; 
    10191020    pj_pool_t *pool; 
    10201021    pj_stun_config stun_cfg; 
     
    10351036            break; 
    10361037    } 
     1038 
     1039    /* Avoid compiler warning */ 
     1040    goto on_return; 
    10371041     
    10381042on_return: 
Note: See TracChangeset for help on using the changeset viewer.