diff options
author | Anatol Belski <ab@php.net> | 2014-08-17 21:05:20 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-17 21:05:20 +0200 |
commit | 41115d3d9dc1f7116ac2d1bb7087a24098885a03 (patch) | |
tree | 47a87b58491217a16dbf137e9c824b78c17d49fe /sapi/cli/php_cli.c | |
parent | 025a7c304e727ba4b320ffb36a3b9087f02b6e81 (diff) | |
download | php-git-41115d3d9dc1f7116ac2d1bb7087a24098885a03.tar.gz |
regenerated parser files
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r-- | sapi/cli/php_cli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 92ec58b25f..bdc4629c08 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -252,10 +252,10 @@ static inline int sapi_cli_select(int fd TSRMLS_DC) return ret != -1; } -PHP_CLI_API php_size_t sapi_cli_single_write(const char *str, php_size_t str_length TSRMLS_DC) /* {{{ */ +PHP_CLI_API size_t sapi_cli_single_write(const char *str, php_size_t str_length TSRMLS_DC) /* {{{ */ { #ifdef PHP_WRITE_STDOUT - long ret; + php_int_t ret; #else php_size_t ret; #endif |