]> granicus.if.org Git - imagemagick/commitdiff
Fixed type cast.
authordirk <dirk@git.imagemagick.org>
Sat, 20 Sep 2014 18:03:32 +0000 (18:03 +0000)
committerdirk <dirk@git.imagemagick.org>
Sat, 20 Sep 2014 18:03:32 +0000 (18:03 +0000)
MagickCore/property.c

index 1f3a8a9c2a693fdb9666ff8b11509a64e9d16a46..24f0daef3db791ec43e29bc40f4506503caea8ee 100644 (file)
@@ -37,7 +37,6 @@
 %
 */
 
-
 /*
   Include declarations.
 */
@@ -1617,7 +1616,7 @@ static MagickBooleanType SkipXMPValue(const char *value)
 
   while(*value != '\0')
   {
-    if (!isspace((int) ((const char) *value)))
+    if (!isspace((int) ((unsigned char) *value)))
       return(MagickFalse);
     value++;
   }