From 98e8a7ba089e1b04b64de015f5a2dcaf13611b02 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Thu, 31 Jan 2002 10:21:24 +0000 Subject: - Fix for bug 15311 (type mismatch of php_dl when #ifndef HAVE_LIBDL) --- ext/standard/dl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/standard/dl.c') diff --git a/ext/standard/dl.c b/ext/standard/dl.c index 83d2729744..bb36cb5d9e 100644 --- a/ext/standard/dl.c +++ b/ext/standard/dl.c @@ -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; -- cgit v1.2.1