Browse Source

Prevented the warning about truncate int to char

pull/12/head
Xinchen Hui 15 years ago
parent
commit
6c0c4896b3
  1. 2
      sapi/cli/php_cli.c

2
sapi/cli/php_cli.c

@ -596,7 +596,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;

Loading…
Cancel
Save