summaryrefslogtreecommitdiff
path: root/ext/standard/dl.c
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2002-01-31 10:21:24 +0000
committerDerick Rethans <derick@php.net>2002-01-31 10:21:24 +0000
commit98e8a7ba089e1b04b64de015f5a2dcaf13611b02 (patch)
treeb4fde17a3f5452f4fd7de748a685d077bcdb40e1 /ext/standard/dl.c
parent866a6092081c3e2cc9d898fc173aee99d740f3af (diff)
downloadphp-git-98e8a7ba089e1b04b64de015f5a2dcaf13611b02.tar.gz
- Fix for bug 15311 (type mismatch of php_dl when #ifndef HAVE_LIBDL)
Diffstat (limited to 'ext/standard/dl.c')
-rw-r--r--ext/standard/dl.c2
1 files changed, 1 insertions, 1 deletions
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;