jani            Thu Oct 25 10:01:25 2007 UTC

  Modified files:              
    /php-src/sapi/cgi   cgi_main.c 
  Log:
  ws
  
http://cvs.php.net/viewvc.cgi/php-src/sapi/cgi/cgi_main.c?r1=1.341&r2=1.342&diff_format=u
Index: php-src/sapi/cgi/cgi_main.c
diff -u php-src/sapi/cgi/cgi_main.c:1.341 php-src/sapi/cgi/cgi_main.c:1.342
--- php-src/sapi/cgi/cgi_main.c:1.341   Thu Oct 25 05:39:24 2007
+++ php-src/sapi/cgi/cgi_main.c Thu Oct 25 10:01:25 2007
@@ -21,7 +21,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: cgi_main.c,v 1.341 2007/10/25 05:39:24 dmitry Exp $ */
+/* $Id: cgi_main.c,v 1.342 2007/10/25 10:01:25 jani Exp $ */
 
 #include "php.h"
 #include "php_globals.h"
@@ -769,7 +769,7 @@
                                "  -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 @@
                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;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to