Skip to content

Commit c536b52

Browse files
author
Moriyoshi Koizumi
committed
style fix
1 parent fef9223 commit c536b52

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

main/memory_streams.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@ static int php_stream_memory_close(php_stream *stream, int close_handle TSRMLS_D
124124

125125

126126
/* {{{ */
127-
static int php_stream_memory_flush(php_stream *stream TSRMLS_DC) {
127+
static int php_stream_memory_flush(php_stream *stream TSRMLS_DC)
128+
{
128129
/* nothing to do here */
129130
return 0;
130131
}
@@ -229,7 +230,8 @@ PHPAPI php_stream *_php_stream_memory_create(int mode STREAMS_DC TSRMLS_DC)
229230

230231
/* {{{ */
231232
PHPAPI php_stream *_php_stream_memory_open(int mode, char *buf, size_t length STREAMS_DC TSRMLS_DC)
232-
{ php_stream *stream;
233+
{
234+
php_stream *stream;
233235
php_stream_memory_data *ms;
234236

235237
if ((stream = php_stream_memory_create_rel(mode)) != NULL) {

0 commit comments

Comments
 (0)