diff options
Diffstat (limited to 'main/output.c')
-rw-r--r-- | main/output.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/main/output.c b/main/output.c index 4e52d458f4..fc45807879 100644 --- a/main/output.c +++ b/main/output.c @@ -173,12 +173,12 @@ PHPAPI void php_end_ob_buffer(zend_bool send_buffer, zend_bool just_flush) TSRMLS_FETCH(); ALLOC_INIT_ZVAL(orig_buffer); - ZVAL_STRINGL(orig_buffer,OG(active_ob_buffer).buffer,OG(active_ob_buffer).text_length,0); + ZVAL_STRINGL(orig_buffer, OG(active_ob_buffer).buffer, OG(active_ob_buffer).text_length, 0); orig_buffer->refcount=2; /* don't let call_user_function() destroy our buffer */ orig_buffer->is_ref=1; ALLOC_INIT_ZVAL(z_status); - ZVAL_LONG(z_status,status); + ZVAL_LONG(z_status, status); params[0] = &orig_buffer; params[1] = &z_status; @@ -415,7 +415,7 @@ int php_ob_get_buffer(pval *p) if (OG(ob_nesting_level)==0) { return FAILURE; } - ZVAL_STRINGL(p,OG(active_ob_buffer).buffer,OG(active_ob_buffer).text_length,1); + ZVAL_STRINGL(p, OG(active_ob_buffer).buffer, OG(active_ob_buffer).text_length, 1); return SUCCESS; } /* }}} */ @@ -429,7 +429,7 @@ int php_ob_get_length(pval *p) if (OG(ob_nesting_level) == 0) { return FAILURE; } - ZVAL_LONG(p,OG(active_ob_buffer).text_length); + ZVAL_LONG(p, OG(active_ob_buffer).text_length); return SUCCESS; } /* }}} */ |