Changeset 5461 for pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_common.c
- Timestamp:
- Oct 14, 2016 4:53:07 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_common.c
r5259 r5461 53 53 } else if (cs[0] == '+') { 54 54 s.ptr++, s.slen--; 55 return pj_strtoul(&s);55 return (int)pj_strtoul(&s); 56 56 } else { 57 return pj_strtoul(&s);57 return (int)pj_strtoul(&s); 58 58 } 59 59 }
Note: See TracChangeset
for help on using the changeset viewer.