diff options
author | Jani Taskinen <jani@php.net> | 2007-10-25 10:01:30 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-10-25 10:01:30 +0000 |
commit | 9942f30a38e2adc600287e93bee60d563621a6c6 (patch) | |
tree | 5d4223b613bf07ed2b4f101ebf0299593f3b8b5d /sapi/cgi | |
parent | 46dc96f3e07a38b86b05f005eda8dd67f1d721dc (diff) | |
download | php-git-9942f30a38e2adc600287e93bee60d563621a6c6.tar.gz |
MFH: ws
Diffstat (limited to 'sapi/cgi')
-rw-r--r-- | sapi/cgi/cgi_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index e1d53e899e..23b265e3f9 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -760,7 +760,7 @@ static void php_cgi_usage(char *argv0) " -v Version number\n" " -w Display source with stripped comments and whitespace.\n" " -z <file> Load Zend extension <file>.\n" - " -T <count> Measure execution time of script repeated <count> times.\n", + " -T <count> Measure execution time of script repeated <count> times.\n", prog, prog); } /* }}} */ @@ -1539,7 +1539,7 @@ consult the installation file that came with this distribution, or visit \n\ while ((c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 1, 2)) != -1) { switch (c) { case 'T': - benchmark = 1; + benchmark = 1; repeats = atoi(php_optarg); gettimeofday(&start, NULL); break; |