Ignore:
Timestamp:
Oct 29, 2006 6:13:13 PM (17 years ago)
Author:
bennylp
Message:

Another Symbian commit, ported all PJSIP libraries and sipstateless runs without crashes (still no SIP message though)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/symbian/pjlib/src/pj/fifobuf.c

    r66 r789  
    3535               fifobuf, buffer, size)); 
    3636 
    37     fifobuf->first = buffer; 
     37    fifobuf->first = (char*) buffer; 
    3838    fifobuf->last = fifobuf->first + size; 
    3939    fifobuf->ubegin = fifobuf->uend = fifobuf->first; 
     
    119119pj_fifobuf_unalloc (pj_fifobuf_t *fifobuf, void *buf) 
    120120{ 
    121     char *ptr = buf; 
     121    char *ptr = (char*) buf; 
    122122    char *endptr; 
    123123    unsigned sz; 
     
    150150pj_fifobuf_free (pj_fifobuf_t *fifobuf, void *buf) 
    151151{ 
    152     char *ptr = buf; 
     152    char *ptr = (char*) buf; 
    153153    char *end; 
    154154    unsigned sz; 
Note: See TracChangeset for help on using the changeset viewer.