inpcom.c, inp_chk_for_multi_in_vcvs(), use `strchr()'

This commit is contained in:
rlar 2014-07-29 18:40:00 +02:00
parent 4436a42dbc
commit e4e2abdf09
1 changed files with 1 additions and 3 deletions

View File

@ -1219,9 +1219,7 @@ inp_chk_for_multi_in_vcvs(struct line *c, int *line_number)
node_str = strdup(str_ptr1);
*str_ptr2 = keep;
str_ptr1 = bool_ptr;
while (*++str_ptr1 != '(')
;
str_ptr1 = strchr(bool_ptr, '(');
fcn_name = copy_substring(bool_ptr, str_ptr1);
str_ptr1 = strchr(str_ptr1, ')');
comma_ptr = strchr(line, ',');