Ignore:
Timestamp:
Nov 23, 2005 11:25:17 AM (18 years ago)
Author:
bennylp
Message:

Fixed warnings when logging is disabled and small opt in msg parser

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip/sip_endpoint.c

    r77 r80  
    998998                                     ... ) 
    999999{ 
     1000#if PJ_LOG_MAX_LEVEL > 0 
    10001001    char newformat[256]; 
    10011002    int len; 
     
    10271028 
    10281029    va_end(marker); 
     1030#else 
     1031    PJ_UNUSED_ARG(format); 
     1032    PJ_UNUSED_ARG(error_code); 
     1033    PJ_UNUSED_ARG(sender); 
     1034    PJ_UNUSED_ARG(endpt); 
     1035#endif 
    10291036} 
    10301037 
     
    11111118    pj_mutex_unlock(endpt->mutex); 
    11121119#else 
     1120    PJ_UNUSED_ARG(endpt); 
     1121    PJ_UNUSED_ARG(detail); 
    11131122    PJ_LOG(3,(THIS_FILE, "pjsip_end_dump: can't dump because it's disabled.")); 
    11141123#endif 
Note: See TracChangeset for help on using the changeset viewer.