]> granicus.if.org Git - php/commitdiff
- Fix for bug 15311 (type mismatch of php_dl when #ifndef HAVE_LIBDL)
authorDerick Rethans <derick@php.net>
Thu, 31 Jan 2002 10:21:24 +0000 (10:21 +0000)
committerDerick Rethans <derick@php.net>
Thu, 31 Jan 2002 10:21:24 +0000 (10:21 +0000)
ext/standard/dl.c

index 83d2729744c8f9f555be74e8f50bbe0a32acefa5..bb36cb5d9e02ab5f22050b1acae424c893b4721d 100644 (file)
@@ -208,7 +208,7 @@ PHP_MINFO_FUNCTION(dl)
 
 #else
 
-void php_dl(pval *file, int type, pval *return_value)
+void php_dl(pval *file, int type, pval *return_value TSRMLS_DC)
 {
        php_error(E_WARNING, "Cannot dynamically load %s - dynamic modules are not supported", Z_STRVAL_P(file));
        RETURN_FALSE;