From 623f564abc5d7165c4cfadadb7f8a98ce33ee857 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Mon, 1 Nov 2004 17:26:15 +0000 Subject: [PATCH] - Fix macro usage --- ext/spl/spl_exceptions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1