From: glennrp Date: Tue, 8 Jan 2013 19:08:31 +0000 (+0000) Subject: Fix another clang warning about extra parentheses in property.c X-Git-Tag: 7.0.1-0~4461 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9831cc43eec727acfabad5a5100a851faece2805;p=imagemagick Fix another clang warning about extra parentheses in property.c --- diff --git a/MagickCore/property.c b/MagickCore/property.c index 215aa4400..01a7cfb15 100644 --- a/MagickCore/property.c +++ b/MagickCore/property.c @@ -3438,7 +3438,7 @@ MagickExport MagickBooleanType SetImageProperty(Image *image, RelinquishMagickMemory,RelinquishMagickMemory); /* Delete property if NULL -- empty string values are valid! */ - if ((value == (const char *) NULL)) + if (value == (const char *) NULL) return(DeleteImageProperty(image,property)); status=MagickTrue;