From 836a3e8bfa9aa857824df709bd80d4bd904bdd05 Mon Sep 17 00:00:00 2001 From: cristy Date: Tue, 1 Oct 2013 16:23:27 +0000 Subject: [PATCH] --- coders/dpx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coders/dpx.c b/coders/dpx.c index 3f6b3e1fe..1da723588 100644 --- a/coders/dpx.c +++ b/coders/dpx.c @@ -774,7 +774,7 @@ static Image *ReadDPXImage(const ImageInfo *image_info,ExceptionInfo *exception) */ dpx.image.orientation=ReadBlobShort(image); offset+=2; - if ((unsigned int) dpx.image.orientation != ~0U) + if (dpx.image.orientation != ~0U) (void) FormatImageProperty(image,"dpx:image.orientation","%d", dpx.image.orientation); switch (dpx.image.orientation) -- 2.40.0