diff options
author | Neel Chauhan <neel@neelc.org> | 2019-11-15 14:56:47 -0500 |
---|---|---|
committer | Neel Chauhan <neel@neelc.org> | 2019-11-15 14:56:47 -0500 |
commit | 4874b0006506d802718ce232f0f4694588e319d0 (patch) | |
tree | c02d96bebb3d8a9fba184a6fd52e23f1ce5d1af0 /src/feature/dircommon | |
parent | 97b5ff2b1d6ec59aea66cc262cf2545c98eefc5b (diff) | |
download | tor-4874b0006506d802718ce232f0f4694588e319d0.tar.gz tor-4874b0006506d802718ce232f0f4694588e319d0.zip |
Remove the extra whitespace in the lines_eq() if statement in consdiff_gen_diff()
Diffstat (limited to 'src/feature/dircommon')
-rw-r--r-- | src/feature/dircommon/consdiff.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |