From 02a27d5c2c9fa8e2c90782107b1e66c05f49f9cc Mon Sep 17 00:00:00 2001 From: cristy Date: Tue, 5 Mar 2013 01:06:21 +0000 Subject: [PATCH] --- coders/miff.c | 2 +- coders/mpc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/coders/miff.c b/coders/miff.c index eeabb5da8..8d2a9bc41 100644 --- a/coders/miff.c +++ b/coders/miff.c @@ -705,7 +705,7 @@ static Image *ReadMIFFImage(const ImageInfo *image_info, MagickFalse,options); if (colorspace < 0) break; - (void) SetImageColorspace(image,(ColorspaceType) colorspace, exception); + image->colorspace=(ColorspaceType) colorspace; break; } if (LocaleCompare(keyword,"compression") == 0) diff --git a/coders/mpc.c b/coders/mpc.c index f02cf2021..351c00b1c 100644 --- a/coders/mpc.c +++ b/coders/mpc.c @@ -409,7 +409,7 @@ static Image *ReadMPCImage(const ImageInfo *image_info,ExceptionInfo *exception) MagickFalse,options); if (colorspace < 0) break; - (void) SetImageColorspace(image,(ColorspaceType) colorspace, exception); + image->colorspace=(ColorspaceType) colorspace; break; } if (LocaleCompare(keyword,"compression") == 0) -- 2.50.1