diff options
author | Marcus Boerger <helly@php.net> | 2005-12-16 22:38:17 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-12-16 22:38:17 +0000 |
commit | e4210e385187a54e5913d35515c2eb56fca73560 (patch) | |
tree | 17185735779191e6d30bd68d89bec5990b6c3836 | |
parent | 579e00d4898e2a3a143cb016a5c5c3cd660f1ed3 (diff) | |
download | php-git-e4210e385187a54e5913d35515c2eb56fca73560.tar.gz |
- Drop superflous param
-rwxr-xr-x | ext/spl/php_spl.c | 2 |
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; |