From: Marcus Boerger Date: Mon, 1 Nov 2004 17:26:15 +0000 (+0000) Subject: - Fix macro usage X-Git-Tag: RELEASE_0_2~771 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=623f564abc5d7165c4cfadadb7f8a98ce33ee857;p=php - Fix macro usage --- 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);