From: Antony Dovgal Date: Wed, 30 May 2007 16:31:47 +0000 (+0000) Subject: remove semicolons and make SunCC happy X-Git-Tag: BEFORE_IMPORT_OF_MYSQLND~575 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8dc895b64a83243b8ee56002c3842fcf58bb7112;p=php remove semicolons and make SunCC happy --- diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index fb50734f06..0b2070d117 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -618,7 +618,7 @@ static ZEND_BEGIN_ARG_INFO_EX(arginfo_exception___construct, 0, 0, 0) ZEND_ARG_INFO(0, message) ZEND_ARG_INFO(0, code) -ZEND_END_ARG_INFO(); +ZEND_END_ARG_INFO() static zend_function_entry default_exception_functions[] = { ZEND_ME(exception, __clone, NULL, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL) @@ -640,7 +640,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_error_exception___construct, 0, 0, 0) ZEND_ARG_INFO(0, severity) ZEND_ARG_INFO(0, filename) ZEND_ARG_INFO(0, lineno) -ZEND_END_ARG_INFO(); +ZEND_END_ARG_INFO() static zend_function_entry error_exception_functions[] = { ZEND_ME(error_exception, __construct, arginfo_error_exception___construct, ZEND_ACC_PUBLIC) diff --git a/Zend/zend_interfaces.c b/Zend/zend_interfaces.c index 9e1402e8d5..8160112ab1 100755 --- a/Zend/zend_interfaces.c +++ b/Zend/zend_interfaces.c @@ -504,18 +504,18 @@ zend_function_entry *zend_funcs_traversable = NULL; static ZEND_BEGIN_ARG_INFO_EX(arginfo_arrayaccess_offset, 0, 0, 1) ZEND_ARG_INFO(0, offset) -ZEND_END_ARG_INFO(); +ZEND_END_ARG_INFO() static ZEND_BEGIN_ARG_INFO_EX(arginfo_arrayaccess_offset_get, 0, 0, 1) /* actually this should be return by ref but atm cannot be */ ZEND_ARG_INFO(0, offset) -ZEND_END_ARG_INFO(); +ZEND_END_ARG_INFO() static ZEND_BEGIN_ARG_INFO_EX(arginfo_arrayaccess_offset_value, 0, 0, 2) ZEND_ARG_INFO(0, offset) ZEND_ARG_INFO(0, value) -ZEND_END_ARG_INFO(); +ZEND_END_ARG_INFO() zend_function_entry zend_funcs_arrayaccess[] = { ZEND_ABSTRACT_ME(arrayaccess, offsetExists, arginfo_arrayaccess_offset) @@ -528,7 +528,7 @@ zend_function_entry zend_funcs_arrayaccess[] = { static ZEND_BEGIN_ARG_INFO(arginfo_serializable_serialize, 0) ZEND_ARG_INFO(0, serialized) -ZEND_END_ARG_INFO(); +ZEND_END_ARG_INFO() zend_function_entry zend_funcs_serializable[] = { ZEND_ABSTRACT_ME(serializable, serialize, NULL)