summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-11-07 13:08:24 +0000
committerMarcus Boerger <helly@php.net>2005-11-07 13:08:24 +0000
commitbb293e15c378dbc541aa6e5b035b44a3952ca2c0 (patch)
tree38e999a3681fa00be4dec07f2e4cdc9857c3b2b1
parentae1d56d0982959f036b551b2c0f03231e97c8a2e (diff)
downloadphp-git-bb293e15c378dbc541aa6e5b035b44a3952ca2c0.tar.gz
- Drop unnecessary param
-rwxr-xr-xext/spl/php_spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c
index aac340082d..a8a9f0e0a3 100755
--- a/ext/spl/php_spl.c
+++ b/ext/spl/php_spl.c
@@ -395,7 +395,7 @@ PHP_FUNCTION(spl_autoload_register)
zend_str_tolower_copy(tmp_name, Z_STRVAL_P(zcallable), Z_STRLEN_P(zcallable));
if (!strcmp(tmp_name, "spl_autoload_call")) {
if (do_throw) {
- zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Function spl_autoload_call() cannot be registered", func_name);
+ zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Function spl_autoload_call() cannot be registered");
}
return;
}