X-Git-Url: https://granicus.if.org/sourcecode?a=blobdiff_plain;f=MagickWand%2Fwand-view.c;h=1cbf6ee7d830f11e9bc519663b4b40a9974181f4;hb=de984cdc3631106b1cbbb8d3972b76a0fc27e8e8;hp=54cfbc2ce221ba3c4d0abab0231b4499b646ed03;hpb=fe676ee3a9cf43404bdc9ba8b27f597b5e4e28f7;p=imagemagick diff --git a/MagickWand/wand-view.c b/MagickWand/wand-view.c index 54cfbc2ce..1cbf6ee7d 100644 --- a/MagickWand/wand-view.c +++ b/MagickWand/wand-view.c @@ -18,7 +18,7 @@ % MagickWand Wand View Methods % % % % Software Design % -% John Cristy % +% Cristy % % March 2003 % % % % % @@ -381,7 +381,7 @@ WandExport MagickBooleanType DuplexTransferWandViewIterator(WandView *source, status=MagickFalse; } } - return(status == MagickFalse ? 0 : 1); + return(status); } /* @@ -588,7 +588,7 @@ WandExport MagickBooleanType GetWandViewIterator(WandView *source, status=MagickFalse; } } - return(status == MagickFalse ? 0 : 1); + return(status); } /* @@ -998,7 +998,7 @@ WandExport MagickBooleanType SetWandViewIterator(WandView *destination, status=MagickFalse; } } - return(status == MagickFalse ? 0 : 1); + return(status); } /* @@ -1160,7 +1160,7 @@ WandExport MagickBooleanType TransferWandViewIterator(WandView *source, status=MagickFalse; } } - return(status == MagickFalse ? 0 : 1); + return(status); } /* @@ -1293,5 +1293,5 @@ WandExport MagickBooleanType UpdateWandViewIterator(WandView *source, status=MagickFalse; } } - return(status == MagickFalse ? 0 : 1); + return(status); }