From ea47cdadb2f04fe7a29254a48d71fb2c3ce32227 Mon Sep 17 00:00:00 2001 From: Dirk Lemstra Date: Sun, 4 May 2025 08:41:25 +0200 Subject: [PATCH] Added parenthesis to silence warning. --- MagickWand/compare.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MagickWand/compare.c b/MagickWand/compare.c index cbff3197ea..fa6e60360c 100644 --- a/MagickWand/compare.c +++ b/MagickWand/compare.c @@ -359,8 +359,8 @@ WandExport MagickBooleanType CompareImagesCommand(ImageInfo *image_info, if ((LocaleCompare(filename,"--") == 0) && (i < (ssize_t) (argc-1))) filename=argv[++i]; images=ReadImages(image_info,filename,exception); - status&=(MagickStatusType) (images != (Image *) NULL) && - (exception->severity < ErrorException); + status&=(MagickStatusType) ((images != (Image *) NULL) && + (exception->severity < ErrorException)); if (images == (Image *) NULL) continue; AppendImageStack(images);