From 2d723e5b54a7469066e074e43cd8d7eac6346d08 Mon Sep 17 00:00:00 2001 From: Cristy Date: Sat, 19 May 2018 09:20:00 -0400 Subject: [PATCH] ... --- PerlMagick/quantum/quantum.xs.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PerlMagick/quantum/quantum.xs.in b/PerlMagick/quantum/quantum.xs.in index a5fd5c7c8..151ed71e0 100644 --- a/PerlMagick/quantum/quantum.xs.in +++ b/PerlMagick/quantum/quantum.xs.in @@ -4836,7 +4836,7 @@ Get(ref,...) *sv; sv=NULL; - if (image->channels & WriteMaskChannel) == 0) + if ((image->channels & WriteMaskChannel) == 0) (void) ClipImage(image,exception); mask_image=GetImageMask(image,ReadPixelMask,exception); if (mask_image != (Image *) NULL) @@ -4859,7 +4859,7 @@ Get(ref,...) *sv; sv=NULL; - if (image->channels & WriteMaskChannel) == 0) + if ((image->channels & WriteMaskChannel) == 0) (void) ClipImage(image,exception); mask_image=GetImageMask(image,ReadPixelMask,exception); if (mask_image != (Image *) NULL) -- 2.40.0