Changeset 4537 for pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_config.c
- Timestamp:
- Jun 19, 2013 6:47:43 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_config.c
r4525 r4537 247 247 const char *whitespace = " \t\r\n"; 248 248 char cDelimiter; 249 int len, token_len; 249 pj_size_t len; 250 int token_len; 250 251 251 252 pj_bzero(line, sizeof(line)); … … 286 287 287 288 *p = '\0'; 288 token_len = p-token;289 token_len = (int)(p-token); 289 290 290 291 if (token_len > 0) { … … 2176 2177 2177 2178 *(cfg.ptr + cfg.slen) = '\0'; 2178 return cfg.slen;2179 return (int)cfg.slen; 2179 2180 }
Note: See TracChangeset
for help on using the changeset viewer.