Changeset 4537 for pjproject/trunk/pjsip/src/pjsip-simple/rpid.c
- Timestamp:
- Jun 19, 2013 6:47:43 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip-simple/rpid.c
r3553 r4537 67 67 static pj_bool_t substring_match(const pj_xml_node *node, 68 68 const char *part_name, 69 int part_len)69 pj_ssize_t part_len) 70 70 { 71 71 pj_str_t end_name; … … 89 89 const pj_xml_node *node = parent->node_head.next, 90 90 *head = (pj_xml_node*) &parent->node_head; 91 int part_len = pj_ansi_strlen(part_name);91 pj_ssize_t part_len = pj_ansi_strlen(part_name); 92 92 93 93 while (node != head) {
Note: See TracChangeset
for help on using the changeset viewer.