From 518e61de97699f74c982e72d78288f9331cacfe0 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Fri, 4 Oct 2002 17:11:35 +0000 Subject: suggest paranthesis around || and && --- main/output.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main/output.c b/main/output.c index a644ba75df..47f63edf00 100644 --- a/main/output.c +++ b/main/output.c @@ -591,9 +591,9 @@ static inline void php_ob_append(const char *text, uint text_length TSRMLS_DC) memcpy(target, text, text_length); target[text_length]=0; - /* If implicit_flush is On, send contents to next buffer and return. */ - if (OG(implicit_flush) || OG(active_ob_buffer).chunk_size - && OG(active_ob_buffer).text_length >= OG(active_ob_buffer).chunk_size) + /* If implicit_flush is On or chunked buffering, send contents to next buffer and return. */ + if (OG(implicit_flush) || (OG(active_ob_buffer).chunk_size + && OG(active_ob_buffer).text_length >= OG(active_ob_buffer).chunk_size)) { zval *output_handler = OG(active_ob_buffer).output_handler; -- cgit v1.2.1