From 8f4c4020be0e141b30799514fa838842790bc53d Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Sat, 28 Apr 2018 14:48:05 +0200 Subject: [PATCH] indeo3: drop unneeded parentheses --- src/codecs/indeo/indeo3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2