From 4874b0006506d802718ce232f0f4694588e319d0 Mon Sep 17 00:00:00 2001 From: Neel Chauhan Date: Fri, 15 Nov 2019 14:56:47 -0500 Subject: [PATCH] Remove the extra whitespace in the lines_eq() if statement in consdiff_gen_diff() --- src/feature/dircommon/consdiff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/feature/dircommon/consdiff.c b/src/feature/dircommon/consdiff.c index fbfa9e0c0a..dd8e986b51 100644 --- a/src/feature/dircommon/consdiff.c +++ b/src/feature/dircommon/consdiff.c @@ -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; }