summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2002-10-20 23:05:34 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2002-10-20 23:05:34 +0000
commitc536b52cb00414c3e3b5d9dcec7443efb708fc76 (patch)
tree2c0bf2680d8889df95ddf19d63965d78534d234f /main
parentfef922307cbf3ed1be28fa47ecb2d43ed94f8714 (diff)
downloadphp-git-c536b52cb00414c3e3b5d9dcec7443efb708fc76.tar.gz
style fix
Diffstat (limited to 'main')
-rw-r--r--main/memory_streams.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/main/memory_streams.c b/main/memory_streams.c
index ca5055da8b..5fadd14b86 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) {