summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2006-03-05 17:31:44 +0000
committerMarcus Boerger <helly@php.net>2006-03-05 17:31:44 +0000
commit20273c4fe977751f1cf96ca8fa500b9b0fe8846d (patch)
tree440c6e6d2067939f5cf59fc60bc165b7b7adee55 /ext/mysqli/mysqli.c
parentd9b2a3372e7d7955d8ea1ef45ef09ce69ee00c32 (diff)
downloadphp-git-20273c4fe977751f1cf96ca8fa500b9b0fe8846d.tar.gz
- Fix build
Diffstat (limited to 'ext/mysqli/mysqli.c')
-rw-r--r--ext/mysqli/mysqli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c
index a8659cdd58..0e5305cd80 100644
--- a/ext/mysqli/mysqli.c
+++ b/ext/mysqli/mysqli.c
@@ -327,7 +327,7 @@ static union _zend_function *php_mysqli_constructor_get(zval *object TSRMLS_DC)
} else if (obj->zo.ce == mysqli_driver_class_entry) {
f.handler = ZEND_FN(mysqli_driver_construct);
} else if (obj->zo.ce == mysqli_warning_class_entry) {
- f.handler = ZEND_FN(mysqli_warning___construct);
+ f.handler = ZEND_MN(mysqli_warning___construct);
}
return (union _zend_function*)&f;