Changeset 6027 for pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_common.c
- Timestamp:
- Jun 13, 2019 3:59:27 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_common.c
r5626 r6027 49 49 pj_cstr(&s, cs); 50 50 if (cs[0] == '-') { 51 s.ptr++ ,s.slen--;51 s.ptr++; s.slen--; 52 52 return 0 - (int)pj_strtoul(&s); 53 53 } else if (cs[0] == '+') { 54 s.ptr++ ,s.slen--;54 s.ptr++; s.slen--; 55 55 return (int)pj_strtoul(&s); 56 56 } else {
Note: See TracChangeset
for help on using the changeset viewer.