From: Kostya Shishkov Date: Sat, 28 Apr 2018 12:48:05 +0000 (+0200) Subject: indeo3: drop unneeded parentheses X-Git-Url: https://git.nihav.org/?p=nihav.git;a=commitdiff_plain;h=8f4c4020be0e141b30799514fa838842790bc53d indeo3: drop unneeded parentheses --- diff --git a/src/codecs/indeo/indeo3.rs b/src/codecs/indeo/indeo3.rs index abbff67..9a3d617 100644 --- a/src/codecs/indeo/indeo3.rs +++ b/src/codecs/indeo/indeo3.rs @@ -387,7 +387,7 @@ impl Indeo3Decoder { } else { fill_block8x8(&mut self.bufs, didx + xoff, stride, 8, - (y == 0), (cell.y == 0) && (y == 0)); + y == 0, (cell.y == 0) && (y == 0)); } } run_blocks -= 1;