diff options
author | Xinchen Hui <laruence@php.net> | 2011-08-08 07:12:12 +0000 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2011-08-08 07:12:12 +0000 |
commit | 43301dae9b903bb013a5c114dbd77894d59392e5 (patch) | |
tree | a34733246a427a886b35265c620fcfa4c2d03eeb /sapi/cli/php_cli.c | |
parent | a7852bcb00f1911b97b22facf572181be33d58c2 (diff) | |
download | php-git-43301dae9b903bb013a5c114dbd77894d59392e5.tar.gz |
Prevented the warning about truncate int to char
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r-- | sapi/cli/php_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 64278af0da..9d8c1f1132 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -615,7 +615,7 @@ static const char *param_mode_conflict = "Either execute direct code, process st */ static int cli_seek_file_begin(zend_file_handle *file_handle, char *script_file, int *lineno TSRMLS_DC) { - char c; + int c; *lineno = 1; |