Ignore:
Timestamp:
Jun 19, 2013 6:47:43 AM (11 years ago)
Author:
riza
Message:

Re #1680: Add initial support for Win64

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip-ua/sip_replaces.c

    r4268 r4537  
    7373    char *p = buf; 
    7474    char *endbuf = buf+size; 
    75     int printed; 
     75    pj_ssize_t printed; 
    7676    const pjsip_parser_const_t *pc = pjsip_parser_const(); 
    7777 
     
    9393                                   &pc->pjsip_TOKEN_SPEC, ';'); 
    9494    if (printed < 0) 
    95         return printed; 
     95        return (int)printed; 
    9696 
    9797    p += printed; 
    98     return p - buf; 
     98    return (int)(p - buf); 
    9999} 
    100100 
Note: See TracChangeset for help on using the changeset viewer.