]> granicus.if.org Git - php/commitdiff
style fix
authorMoriyoshi Koizumi <moriyoshi@php.net>
Sun, 20 Oct 2002 23:05:34 +0000 (23:05 +0000)
committerMoriyoshi Koizumi <moriyoshi@php.net>
Sun, 20 Oct 2002 23:05:34 +0000 (23:05 +0000)
main/memory_streams.c

index ca5055da8bdffa156671616549dadbf2434f26de..5fadd14b866efb14e0b98d2de13333dcbe323434 100644 (file)
@@ -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) {