diff options
| author | Xinchen Hui <laruence@php.net> | 2014-08-27 12:14:17 +0800 |
|---|---|---|
| committer | Xinchen Hui <laruence@php.net> | 2014-08-27 12:14:57 +0800 |
| commit | 24ab7b53f2b83ee134cacf7d39dcdf0b4d3b119a (patch) | |
| tree | 9f6ae4214db59f624bdb2db4f0817cd2df5e7166 | |
| parent | 8b87534468af46a55b3c6bdb0fd69219d22e4449 (diff) | |
| download | php-git-24ab7b53f2b83ee134cacf7d39dcdf0b4d3b119a.tar.gz | |
It should be int
| -rw-r--r-- | Zend/zend_closures.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Zend/zend_closures.c b/Zend/zend_closures.c index 1fa6dce21c..c8497a4f2d 100644 --- a/Zend/zend_closures.c +++ b/Zend/zend_closures.c @@ -28,7 +28,6 @@ #include "zend_objects.h" #include "zend_objects_API.h" #include "zend_globals.h" -#include "php_stdint.h" #define ZEND_CLOSURE_PRINT_NAME "Closure object" @@ -76,7 +75,7 @@ ZEND_METHOD(Closure, call) zend_fcall_info fci; zend_fcall_info_cache fci_cache; zval *my_params; - uint32_t my_param_count = 0; + int my_param_count = 0; zend_function my_function; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "o*", &newthis, &my_params, &my_param_count) == FAILURE) { |
