derick          Thu Oct 24 10:01:40 2002 EDT

  Modified files:              
    /php4/sapi/cli      php_cli.c 
  Log:
  - whitespace
  
  
Index: php4/sapi/cli/php_cli.c
diff -u php4/sapi/cli/php_cli.c:1.41 php4/sapi/cli/php_cli.c:1.42
--- php4/sapi/cli/php_cli.c:1.41        Thu Oct 24 09:25:57 2002
+++ php4/sapi/cli/php_cli.c     Thu Oct 24 10:01:39 2002
@@ -109,7 +109,9 @@
        long ret;
 
        ret = write(STDOUT_FILENO, str, str_length);
-       if (ret <= 0) return 0;
+       if (ret <= 0) {
+               return 0;
+       }
        return ret;
 #else
        size_t ret;
@@ -748,8 +750,9 @@
        } zend_end_try();
 
 out:
-       if (module_started)
+       if (module_started) {
                php_module_shutdown(TSRMLS_C);
+       }
        sapi_shutdown();
 #ifdef ZTS
        tsrm_shutdown();



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

Reply via email to