Ignore:
Timestamp:
Aug 31, 2012 6:17:56 AM (12 years ago)
Author:
nanang
Message:

Misc (#1559): fixed warnings of unused var on Symbian platform.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pjlib-test/ioq_udp.c

    r3553 r4238  
    268268        TRACE_("poll..."); 
    269269#ifdef PJ_SYMBIAN 
    270         rc = pj_symbianos_poll(-1, 5000); 
     270        rc = pj_symbianos_poll(-1, PJ_TIME_VAL_MSEC(timeout)); 
    271271#else 
    272272        rc = pj_ioqueue_poll(ioque, &timeout); 
     
    784784            pj_time_val timeout = { 1, 0 }; 
    785785#ifdef PJ_SYMBIAN 
    786             rc = pj_symbianos_poll(-1, 1000); 
     786            rc = pj_symbianos_poll(-1, PJ_TIME_VAL_MSEC(timeout)); 
    787787#else 
    788788            rc = pj_ioqueue_poll(ioque, &timeout); 
     
    813813            pj_time_val timeout = { 0, 10 }; 
    814814#ifdef PJ_SYMBIAN 
     815            PJ_UNUSED_ARG(timeout); 
    815816            rc = pj_symbianos_poll(-1, 100); 
    816817#else        
Note: See TracChangeset for help on using the changeset viewer.