Remove the extra whitespace in the lines_eq() if statement in consdiff_gen_diff()

This commit is contained in:
Neel Chauhan 2019-11-15 14:56:47 -05:00
parent 97b5ff2b1d
commit 4874b00065

View File

@ -1050,7 +1050,7 @@ consdiff_gen_diff(const smartlist_t *cons1,
if (smartlist_len(cons2) == smartlist_len(ed_cons2)) {
SMARTLIST_FOREACH_BEGIN(cons2, const cdline_t *, line1) {
const cdline_t *line2 = smartlist_get(ed_cons2, line1_sl_idx);
if (! lines_eq(line1, line2) ) {
if (!lines_eq(line1, line2)) {
cons2_eq = 0;
break;
}