From: Cristy Date: Sat, 19 May 2018 13:20:00 +0000 (-0400) Subject: ... X-Git-Tag: 7.0.7-34~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2d723e5b54a7469066e074e43cd8d7eac6346d08;p=imagemagick ... --- 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)