X-Git-Url: https://granicus.if.org/sourcecode?a=blobdiff_plain;f=MagickWand%2Fwand-view.c;h=1cbf6ee7d830f11e9bc519663b4b40a9974181f4;hb=de984cdc3631106b1cbbb8d3972b76a0fc27e8e8;hp=55d73867a924583d1097002de3e76811dde99ea4;hpb=ebd71f4a4d535b9bd4465e44331c1825e32ee1ee;p=imagemagick diff --git a/MagickWand/wand-view.c b/MagickWand/wand-view.c index 55d73867a..1cbf6ee7d 100644 --- a/MagickWand/wand-view.c +++ b/MagickWand/wand-view.c @@ -18,11 +18,11 @@ % MagickWand Wand View Methods % % % % Software Design % -% John Cristy % +% Cristy % % March 2003 % % % % % -% Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization % +% Copyright 1999-2014 ImageMagick Studio LLC, a non-profit organization % % dedicated to making software imaging solutions freely available. % % % % You may not use this file except in compliance with the License. You may % @@ -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); }