mirror of
https://github.com/ImageMagick/ImageMagick.git
synced 2026-06-12 15:37:14 +02:00
Added parenthesis to silence warning.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user