From c536b52cb00414c3e3b5d9dcec7443efb708fc76 Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Sun, 20 Oct 2002 23:05:34 +0000 Subject: [PATCH] style fix --- main/memory_streams.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/main/memory_streams.c b/main/memory_streams.c index ca5055da8bd..5fadd14b866 100644 --- a/main/memory_streams.c +++ b/main/memory_streams.c @@ -124,7 +124,8 @@ static int php_stream_memory_close(php_stream *stream, int close_handle TSRMLS_D /* {{{ */ -static int php_stream_memory_flush(php_stream *stream TSRMLS_DC) { +static int php_stream_memory_flush(php_stream *stream TSRMLS_DC) +{ /* nothing to do here */ return 0; } @@ -229,7 +230,8 @@ PHPAPI php_stream *_php_stream_memory_create(int mode STREAMS_DC TSRMLS_DC) /* {{{ */ PHPAPI php_stream *_php_stream_memory_open(int mode, char *buf, size_t length STREAMS_DC TSRMLS_DC) -{ php_stream *stream; +{ + php_stream *stream; php_stream_memory_data *ms; if ((stream = php_stream_memory_create_rel(mode)) != NULL) {