From: Marcus Boerger Date: Fri, 16 Dec 2005 22:38:17 +0000 (+0000) Subject: - Drop superflous param X-Git-Tag: php-5.1.2RC1~91 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4210e385187a54e5913d35515c2eb56fca73560;p=php - Drop superflous param --- 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;