diff options
author | Xinchen Hui <laruence@php.net> | 2015-02-05 16:11:44 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2015-02-05 16:11:44 +0800 |
commit | a3379d6691a1820bd6a4fbe72e27f52c2253ea1d (patch) | |
tree | e03d48ff9aaff3d2627e30792b76d16f808a5e8d /Zend/zend_API.h | |
parent | f5a9cfc33ab86e343b5cbf0d0a39a62037c32975 (diff) | |
download | php-git-a3379d6691a1820bd6a4fbe72e27f52c2253ea1d.tar.gz |
Padding
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 746021e367..d84fbcb2bf 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -107,13 +107,13 @@ typedef struct _zend_fcall_info_cache { #define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(name, return_reference, required_num_args, type, class_name, allow_null) \ - static const zend_internal_arg_info name[] = { \ - { (const char*)(zend_uintptr_t)(required_num_args), class_name, type, return_reference, allow_null, 0 }, + static const zend_internal_arg_info name[] = { \ + { (const char*)(zend_uintptr_t)(required_num_args), class_name, type, return_reference, allow_null, 0 }, #define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO(name, type, class_name, allow_null) \ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(name, 0, -1, type, class_name, allow_null) #define ZEND_BEGIN_ARG_INFO_EX(name, _unused, return_reference, required_num_args) \ - static const zend_internal_arg_info name[] = { \ + static const zend_internal_arg_info name[] = { \ { (const char*)(zend_uintptr_t)(required_num_args), NULL, 0, return_reference, 0, 0 }, #define ZEND_BEGIN_ARG_INFO(name, _unused) \ ZEND_BEGIN_ARG_INFO_EX(name, 0, ZEND_RETURN_VALUE, -1) |