From c3f26e9ecfbaeddbecbb49f80e7995781597fbc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Minier?= Date: Sat, 29 Nov 2008 00:38:29 +0000 Subject: Use a regular int instead of MagickBoolType and assume 0 for MagickFalse. --- src/libxinevdec/image.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libxinevdec/image.c b/src/libxinevdec/image.c index a4d09a63c..7592e0bb5 100644 --- a/src/libxinevdec/image.c +++ b/src/libxinevdec/image.c @@ -97,7 +97,7 @@ static void image_decode_data (video_decoder_t *this_gen, buf_element_t *buf) { if (buf->decoder_flags & BUF_FLAG_FRAME_END) { int width, height, i; - MagickBooleanType status; + int status; MagickWand *wand; uint8_t *img_buf, *img_buf_ptr; yuv_planes_t yuv_planes; @@ -110,7 +110,7 @@ static void image_decode_data (video_decoder_t *this_gen, buf_element_t *buf) { status = MagickReadImageBlob(wand, this->image, this->index); this->index = 0; - if (status == MagickFalse) { + if (!status) { DestroyMagickWand(wand); lprintf("error loading image\n"); return; -- cgit v1.2.3