summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-12-16 22:38:17 +0000
committerMarcus Boerger <helly@php.net>2005-12-16 22:38:17 +0000
commite4210e385187a54e5913d35515c2eb56fca73560 (patch)
tree17185735779191e6d30bd68d89bec5990b6c3836
parent579e00d4898e2a3a143cb016a5c5c3cd660f1ed3 (diff)
downloadphp-git-e4210e385187a54e5913d35515c2eb56fca73560.tar.gz
- Drop superflous 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 4d544b69d3..e1cf0d0a2c 100755
--- a/ext/spl/php_spl.c
+++ b/ext/spl/php_spl.c
@@ -426,7 +426,7 @@ PHP_FUNCTION(spl_autoload_register)
return;
} else {
if (do_throw) {
- zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Illegal value passed", func_name);
+ zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Illegal value passed");
}
efree(func_name);
return;