From 68bd1b54749d1ab226f2d66a36ed1dbf20bd18cc Mon Sep 17 00:00:00 2001 From: dirk Date: Thu, 28 Aug 2014 18:58:23 +0000 Subject: [PATCH] Fix for 64 bit build. --- MagickCore/property.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MagickCore/property.c b/MagickCore/property.c index a74a22de8..ebcb83cde 100644 --- a/MagickCore/property.c +++ b/MagickCore/property.c @@ -1996,12 +1996,12 @@ static char *TraceSVGClippath(const unsigned char *blob,size_t length, */ for (i=0; i < 3; i++) { - size_t + unsigned int xx, yy; - yy=(size_t) ((int) ReadPropertyMSBLong(&blob,&length)); - xx=(size_t) ((int) ReadPropertyMSBLong(&blob,&length)); + yy=(unsigned int) ((int) ReadPropertyMSBLong(&blob,&length)); + xx=(unsigned int) ((int) ReadPropertyMSBLong(&blob,&length)); x=(ssize_t) xx; if (xx > 2147483647) x=(ssize_t) xx-4294967295U-1; -- 2.50.1