From: Derick Rethans Date: Thu, 24 Oct 2002 14:01:39 +0000 (+0000) Subject: - whitespace X-Git-Tag: php-4.3.0pre2~98 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f9f9244eb807eb5f6e1e3017d80656b8203ed55;p=php - whitespace --- diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 8e1ecc9b4c..25382faa69 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -109,7 +109,9 @@ static inline size_t sapi_cli_single_write(const char *str, uint str_length) 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 @@ int main(int argc, char *argv[]) } zend_end_try(); out: - if (module_started) + if (module_started) { php_module_shutdown(TSRMLS_C); + } sapi_shutdown(); #ifdef ZTS tsrm_shutdown();