]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove the extra whitespace in the lines_eq() if statement in consdiff_gen_diff()
authorNeel Chauhan <neel@neelc.org>
Fri, 15 Nov 2019 19:56:47 +0000 (14:56 -0500)
committerNeel Chauhan <neel@neelc.org>
Fri, 15 Nov 2019 19:56:47 +0000 (14:56 -0500)
src/feature/dircommon/consdiff.c

index fbfa9e0c0a04809bcb04c1dd855f8d872cdd2cd4..dd8e986b5198b5163212cbd1bee47c6a08695128 100644 (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;
       }