Changeset 3092


Ignore:
Timestamp:
Feb 10, 2010 7:49:03 AM (14 years ago)
Author:
bennylp
Message:

More ticket #1018: fixed warning about incompatible pointer types

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/src/pjlib-util/http_client.c

    r3089 r3092  
    949949    pj_assert(hreq->buffer.ptr); 
    950950    status = pj_activesock_start_read2(hreq->asock, hreq->pool, BUF_SIZE,  
    951                                        &hreq->buffer.ptr, 0); 
     951                                       (void**)&hreq->buffer.ptr, 0); 
    952952    if (status != PJ_SUCCESS) { 
    953953        /* Error reading */ 
Note: See TracChangeset for help on using the changeset viewer.