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-simple/evsub_msg.c

    r3841 r4537  
    6363    char *p = buf; 
    6464    char *endbuf = buf+size; 
    65     int printed; 
     65    pj_ssize_t printed; 
    6666    const pjsip_parser_const_t *pc = pjsip_parser_const(); 
    6767 
     
    7777                                   &pc->pjsip_TOKEN_SPEC, ';'); 
    7878    if (printed < 0) 
    79         return printed; 
     79        return (int)printed; 
    8080 
    8181    p += printed; 
    82     return p - buf; 
     82    return (int)(p - buf); 
    8383} 
    8484 
     
    162162    char *p = buf; 
    163163    char *endbuf = buf+size; 
    164     int printed; 
     164    pj_ssize_t printed; 
    165165    const pjsip_parser_const_t *pc = pjsip_parser_const(); 
    166166 
     
    190190                                    ';'); 
    191191    if (printed < 0) 
    192         return printed; 
     192        return (int)printed; 
    193193 
    194194    p += printed; 
    195195 
    196     return p - buf; 
     196    return (int)(p - buf); 
    197197} 
    198198 
Note: See TracChangeset for help on using the changeset viewer.