Changeset 1239 for pjproject/trunk/pjlib-util/src/pjlib-util/string.c
- Timestamp:
- May 1, 2007 12:25:01 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib-util/src/pjlib-util/string.c
r974 r1239 32 32 return *src_str; 33 33 34 dst = dst_str.ptr = pj_pool_alloc(pool, src_str->slen);34 dst = dst_str.ptr = (char*) pj_pool_alloc(pool, src_str->slen); 35 35 36 36 while (src != end) {
Note: See TracChangeset
for help on using the changeset viewer.