Commit 5661e9cd authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

cmd/tests: Ensure failures are caught in all cases when an expected line ends with a '@'.

parent e5ce32e5
......@@ -186,7 +186,8 @@ static const char *compare_line(const char *out_line, const char *out_end, const
&& !memcmp(exp_ptr, or_broken_cmd, sizeof(or_broken_cmd))) {
exp_ptr = exp_end;
continue;
}
}else if(out_ptr == out_end || *out_ptr != *exp_ptr)
err = out_ptr;
}else if(out_ptr == out_end || *out_ptr != *exp_ptr) {
err = out_ptr;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment