Changeset 3245 for pjproject


Ignore:
Timestamp:
Aug 1, 2010 3:25:04 PM (14 years ago)
Author:
bennylp
Message:

Re #1068 (Misc): fixed compilation warnings with MSVC compiler

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/samples/httpdemo.c

    r3089 r3245  
    4646static void on_response(pj_http_req *http_req, const pj_http_resp *resp) 
    4747{ 
     48        PJ_UNUSED_ARG(http_req); 
    4849    PJ_LOG(3,(THIS_FILE, "%.*s %d %.*s", (int)resp->version.slen, resp->version.ptr, 
    4950                                           resp->status_code, 
     
    5354static void on_send_data(pj_http_req *http_req, void **data, pj_size_t *size) 
    5455{ 
    55  
     56        PJ_UNUSED_ARG(http_req); 
     57        PJ_UNUSED_ARG(size); 
     58        PJ_UNUSED_ARG(data); 
    5659} 
    5760 
Note: See TracChangeset for help on using the changeset viewer.