summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarald Radi <phanto@php.net>2002-04-11 20:32:03 +0000
committerHarald Radi <phanto@php.net>2002-04-11 20:32:03 +0000
commit6f22159aa22f9aac58efc86699938ec42a319041 (patch)
tree0081f5ff4d1e749815f6968780c2f27a81d4e1bb
parent27a5b380cf8dd0f7f4f593f12831a83ffa7c3bcd (diff)
downloadphp-git-6f22159aa22f9aac58efc86699938ec42a319041.tar.gz
fixed type
-rw-r--r--ext/gd/gd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c
index b64306d27d..464e7e4729 100644
--- a/ext/gd/gd.c
+++ b/ext/gd/gd.c
@@ -999,7 +999,7 @@ static int _php_image_type (char data[8])
}
else if (!memcmp(data, php_sig_gif, 3))
return PHP_GDIMG_TYPE_GIF;
-#ifdef HAVE_GD_WMBP
+#ifdef HAVE_GD_WBMP
else {
gdIOCtx *io_ctx;
io_ctx = gdNewDynamicCtx (8, data);