From: Derick Rethans Date: Thu, 31 Jan 2002 10:21:24 +0000 (+0000) Subject: - Fix for bug 15311 (type mismatch of php_dl when #ifndef HAVE_LIBDL) X-Git-Tag: PRE_ISSET_PATCH~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98e8a7ba089e1b04b64de015f5a2dcaf13611b02;p=php - Fix for bug 15311 (type mismatch of php_dl when #ifndef HAVE_LIBDL) --- 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;