diff options
author | Jan Lehnardt <jan@php.net> | 2002-11-13 12:41:05 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@php.net> | 2002-11-13 12:41:05 +0000 |
commit | e95c7178cc93a15d04a10fd693cfd52ec8014bdb (patch) | |
tree | e545a7c4ff47930daf7d574663c0c31c6d80a7fb /sapi/cli/php_cli.c | |
parent | af436aa873439a84f8ba3a73609ff9da6879ea77 (diff) | |
download | php-git-e95c7178cc93a15d04a10fd693cfd52ec8014bdb.tar.gz |
- be more verbose
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 a34ca225dc..80c1f7f689 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -651,7 +651,7 @@ int main(int argc, char *argv[]) if (!(file_handle.handle.fp = VCWD_FOPEN(script_file, "rb"))) { SG(headers_sent) = 1; SG(request_info).no_headers = 1; - PUTS("Could not open input file.\n"); + php_printf("Could not open input file: %s.\n", script_file); goto err; } file_handle.filename = script_file; |