Ignore:
Timestamp:
Oct 14, 2016 4:53:07 AM (8 years ago)
Author:
ming
Message:

Re #1945 (misc): Get rid of 64-bit compiler warnings for pjsua_app

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_common.c

    r5259 r5461  
    5353    } else if (cs[0] == '+') { 
    5454        s.ptr++, s.slen--; 
    55         return pj_strtoul(&s); 
     55        return (int)pj_strtoul(&s); 
    5656    } else { 
    57         return pj_strtoul(&s); 
     57        return (int)pj_strtoul(&s); 
    5858    } 
    5959} 
Note: See TracChangeset for help on using the changeset viewer.