summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-01-17 17:12:05 +0000
committerfoobar <sniper@php.net>2005-01-17 17:12:05 +0000
commit01b9a94d41c1dfa2837e731fac7e749d8396472c (patch)
tree7990383bf8d6ca72282e2a66a0b1e0dba5a89f49
parentcd3b8c3de4e7240e521afa8878f4b24adb480d92 (diff)
downloadphp-git-01b9a94d41c1dfa2837e731fac7e749d8396472c.tar.gz
MFH: Forgotten fix for DL_UNLOAD macro
-rw-r--r--Zend/zend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend.h b/Zend/zend.h
index 0fcbdfe18b..7078d7e4fe 100644
--- a/Zend/zend.h
+++ b/Zend/zend.h
@@ -117,7 +117,7 @@ const char *zend_mh_bundle_error(void);
# define ZEND_EXTENSIONS_SUPPORT 1
#elif defined(HAVE_MACH_O_DYLD_H)
# define DL_LOAD(libname) zend_mh_bundle_load(libname)
-# define DL_UNLOAD(handle) zend_mh_bundle_unload(handle)
+# define DL_UNLOAD zend_mh_bundle_unload
# define DL_FETCH_SYMBOL(h,s) zend_mh_bundle_symbol(h,s)
# define DL_ERROR zend_mh_bundle_error
# define DL_HANDLE void *