From: dirk Date: Sat, 20 Sep 2014 18:03:32 +0000 (+0000) Subject: Fixed type cast. X-Git-Tag: 7.0.1-0~1987 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=621c75043c39c673678103849714d440796cdb47;p=imagemagick Fixed type cast. --- diff --git a/MagickCore/property.c b/MagickCore/property.c index 1f3a8a9c2..24f0daef3 100644 --- a/MagickCore/property.c +++ b/MagickCore/property.c @@ -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++; }