Changeset 4412 for pjproject/trunk/pjnath/src/pjnath-test/ice_test.c
- Timestamp:
- Mar 5, 2013 3:12:32 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/src/pjnath-test/ice_test.c
r4360 r4412 468 468 } \ 469 469 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; \ 471 472 } \ 472 473 } … … 1016 1017 int ice_conc_test(void) 1017 1018 { 1018 const intLOOP = 100;1019 const unsigned LOOP = 100; 1019 1020 pj_pool_t *pool; 1020 1021 pj_stun_config stun_cfg; … … 1035 1036 break; 1036 1037 } 1038 1039 /* Avoid compiler warning */ 1040 goto on_return; 1037 1041 1038 1042 on_return:
Note: See TracChangeset
for help on using the changeset viewer.