]> granicus.if.org Git - php/commitdiff
ws
authorJani Taskinen <jani@php.net>
Thu, 25 Oct 2007 10:01:25 +0000 (10:01 +0000)
committerJani Taskinen <jani@php.net>
Thu, 25 Oct 2007 10:01:25 +0000 (10:01 +0000)
sapi/cgi/cgi_main.c

index 4838f129a38a4e846c674ce9c796746c5ac80a3f..ce5dd963b79fb50895e660c4169e15520e3d108f 100644 (file)
@@ -769,7 +769,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);
 }
 /* }}} */
@@ -1549,7 +1549,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;