From 62cf71319382faa2dced95488ab838ce8b796146 Mon Sep 17 00:00:00 2001 From: dirk Date: Tue, 2 Feb 2016 12:56:39 +0100 Subject: [PATCH] Added missing typecast. --- coders/psd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coders/psd.c b/coders/psd.c index 6b393c2a8..11d26ea85 100644 --- a/coders/psd.c +++ b/coders/psd.c @@ -887,7 +887,7 @@ static MagickBooleanType ReadPSDChannelPixels(Image *image, q+=GetPixelChannels(image); x++; } - if (x != image->columns) + if (x != (ssize_t) image->columns) x--; continue; } -- 2.40.0