From 3d3b982795fbd3bc4146d15d0609c86081a2bcf2 Mon Sep 17 00:00:00 2001 From: Cristy Date: Sat, 8 Oct 2022 22:58:00 -0400 Subject: [PATCH] eliminate compiler warning --- coders/tiff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coders/tiff.c b/coders/tiff.c index 4f02b4ff7b..f3bdf33dc1 100644 --- a/coders/tiff.c +++ b/coders/tiff.c @@ -1623,8 +1623,8 @@ static Image *ReadTIFFImage(const ImageInfo *image_info, (void) SetImageProperty(image,"tiff:alpha","unassociated"); } } - if (image->matte != MagickFalse) - extra_samples--; + if (image->matte != MagickFalse) + extra_samples--; } if (image->matte != MagickFalse) (void) SetImageAlphaChannel(image,OpaqueAlphaChannel);