From 7bc3bea2307bd4802368f4dedb6297d83184eec5 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 16 Apr 2019 15:32:37 +0200 Subject: [PATCH] style --- common/crapto1/crapto1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/crapto1/crapto1.c b/common/crapto1/crapto1.c index 232afb4a0..a74fbb36c 100644 --- a/common/crapto1/crapto1.c +++ b/common/crapto1/crapto1.c @@ -89,7 +89,7 @@ recover(uint32_t *o_head, uint32_t *o_tail, uint32_t oks, if (rem == -1) { for (uint32_t *e = e_head; e <= e_tail; ++e) { - *e = *e << 1 ^ (evenparity32(*e & LF_POLY_EVEN)) ^ !!(in & 4); + *e = *e << 1 ^ (evenparity32(*e & LF_POLY_EVEN)) ^ (!!(in & 4)); for (uint32_t *o = o_head; o <= o_tail; ++o, ++sl) { sl->even = *o; sl->odd = *e ^ (evenparity32(*o & LF_POLY_ODD));