Ignore:
Timestamp:
Apr 27, 2009 7:18:38 PM (15 years ago)
Author:
nanang
Message:

Cleaned up bunch of compile warnings. Special for libgsmcodec, its warning level is reduced from 4 to 3.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/vs-reorg2/pjsip/src/test/inv_offer_answer_test.c

    r2638 r2654  
    195195    pjmedia_sdp_session *sdp; 
    196196 
     197    PJ_UNUSED_ARG(offer); 
     198 
    197199    sdp = create_sdp(inv->dlg->pool, oa_sdp[inv_test.oa_index].answer); 
    198200    pjsip_inv_set_sdp_answer(inv, sdp); 
     
    211213                            pjmedia_sdp_session **p_offer) 
    212214{ 
     215    PJ_UNUSED_ARG(inv); 
     216    PJ_UNUSED_ARG(p_offer); 
     217 
    213218    pj_assert(!"Should not happen"); 
    214219} 
     
    217222                            pj_status_t status) 
    218223{ 
     224    PJ_UNUSED_ARG(status); 
     225 
    219226    if (inv_ses == inv_test.uas) { 
    220227        inv_test.uas_update_cnt++; 
     
    258265    const char *who = NULL; 
    259266 
     267    PJ_UNUSED_ARG(e); 
     268 
    260269    if (inv->state == PJSIP_INV_STATE_DISCONNECTED) { 
    261270        TRACE_((THIS_FILE, "      %s call disconnected", 
     
    612621static pjsip_dialog* on_dlg_forked(pjsip_dialog *first_set, pjsip_rx_data *res) 
    613622{ 
     623    PJ_UNUSED_ARG(first_set); 
     624    PJ_UNUSED_ARG(res); 
     625 
    614626    return NULL; 
    615627} 
     
    618630static void on_new_session(pjsip_inv_session *inv, pjsip_event *e) 
    619631{ 
     632    PJ_UNUSED_ARG(inv); 
     633    PJ_UNUSED_ARG(e); 
    620634} 
    621635 
Note: See TracChangeset for help on using the changeset viewer.