summaryrefslogtreecommitdiff
path: root/MagickWand
diff options
context:
space:
mode:
authorcristy <urban-warrior@git.imagemagick.org>2014-12-25 18:05:31 +0000
committercristy <urban-warrior@git.imagemagick.org>2014-12-25 18:05:31 +0000
commitbadc7524fff0d4d412aaeae28a65ea73a0451c8d (patch)
tree51e2974754513754e834beda5f26de45cb80fe98 /MagickWand
parent043a981a1f6b2393520e911594ce29ef5b060ee5 (diff)
downloadImageMagick-badc7524fff0d4d412aaeae28a65ea73a0451c8d.tar.gz
Make MagickMax()/MagickMin() a macro rather than an inline.
Diffstat (limited to 'MagickWand')
-rw-r--r--MagickWand/mogrify.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/MagickWand/mogrify.c b/MagickWand/mogrify.c
index b110bfb39..820d38d23 100644
--- a/MagickWand/mogrify.c
+++ b/MagickWand/mogrify.c
@@ -381,13 +381,6 @@ static inline MagickBooleanType IsPathWritable(const char *path)
return(MagickTrue);
}
-static inline ssize_t MagickMax(const ssize_t x,const ssize_t y)
-{
- if (x > y)
- return(x);
- return(y);
-}
-
static MagickBooleanType MonitorProgress(const char *text,
const MagickOffsetType offset,const MagickSizeType extent,
void *wand_unused(client_data))