- Timestamp:
- Dec 5, 2008 1:56:05 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_util.c
r2370 r2372 79 79 /* Create new element */ 80 80 t = PJ_POOL_ZALLOC_T(pool, pjsip_target); 81 t->uri = pjsip_uri_clone(pool, uri);81 t->uri = (pjsip_uri*)pjsip_uri_clone(pool, uri); 82 82 t->q1000 = q1000; 83 83 … … 175 175 PJ_ASSERT_RETURN(target && pool && status_code && reason, PJ_EINVAL); 176 176 177 target->code = status_code;177 target->code = (pjsip_status_code)status_code; 178 178 pj_strdup(pool, &target->reason, reason); 179 179
Note: See TracChangeset
for help on using the changeset viewer.