diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-11-23 11:20:51 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-11-23 11:20:51 +0000 |
commit | 715ad2730c22b3bca63a006d67f5016f80ea39cd (patch) | |
tree | d2684c30254d935c47125ea7ff62a5f2e1b34bd0 /ext/gd | |
parent | 40d605a3852b43b997506780257793dad5613191 (diff) | |
download | php-git-715ad2730c22b3bca63a006d67f5016f80ea39cd.tar.gz |
Fixed tab positions.
Diffstat (limited to 'ext/gd')
-rw-r--r-- | ext/gd/gd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c index d23574048e..41f4991bc6 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -1867,12 +1867,12 @@ PHP_FUNCTION(imagecolordeallocate) ZEND_FETCH_RESOURCE(im, gdImagePtr, IM, -1, "Image", le_gd); - #if HAVE_LIBGD20 +# if HAVE_LIBGD20 /* We can return right away for a truecolor image as deallocating colours is meaningless here */ if (gdImageTrueColor(im)) { RETURN_TRUE; } - #endif +# endif convert_to_long_ex(index); col = Z_LVAL_PP(index); |