diff options
| author | Marcus Boerger <helly@php.net> | 2004-11-01 17:26:15 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2004-11-01 17:26:15 +0000 |
| commit | 623f564abc5d7165c4cfadadb7f8a98ce33ee857 (patch) | |
| tree | 857e9c374875eb7876a3bd1d97515e74a2efe486 /ext/spl | |
| parent | cae8eeba8df4e2b723675a0fb71dad19956b282a (diff) | |
| download | php-git-623f564abc5d7165c4cfadadb7f8a98ce33ee857.tar.gz | |
- Fix macro usage
Diffstat (limited to 'ext/spl')
| -rwxr-xr-x | ext/spl/spl_exceptions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/spl_exceptions.c b/ext/spl/spl_exceptions.c index 4d45133ddb..9d19962cc0 100755 --- a/ext/spl/spl_exceptions.c +++ b/ext/spl/spl_exceptions.c @@ -56,7 +56,7 @@ PHP_MINIT_FUNCTION(spl_exceptions) REGISTER_SPL_SUB_CLASS_EX(OutOfRangeException, LogicException, NULL, NULL); REGISTER_SPL_SUB_CLASS_EX(RuntimeException, Exception, NULL, NULL); - REGISTER_SPL_SUB_CLASS_EX(OutOfBoundsException RuntimeException, NULL, NULL); + REGISTER_SPL_SUB_CLASS_EX(OutOfBoundsException, RuntimeException, NULL, NULL); REGISTER_SPL_SUB_CLASS_EX(OverflowException, RuntimeException, NULL, NULL); REGISTER_SPL_SUB_CLASS_EX(RangeException, RuntimeException, NULL, NULL); REGISTER_SPL_SUB_CLASS_EX(UnderflowException, RuntimeException, NULL, NULL); |
