diff options
author | Andras Elso <elso.andras@gmail.com> | 2013-01-24 17:12:13 +0100 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2013-01-27 17:11:14 -0800 |
commit | 3e6d633a0d8cef7de8b32febb61d0bb32628305a (patch) | |
tree | c71f8c5e1a7d178e7cd1c029d9106162dd7b48f5 /main | |
parent | 122570443b828a51b4536d80ad487eb32bcc8817 (diff) | |
download | php-git-3e6d633a0d8cef7de8b32febb61d0bb32628305a.tar.gz |
Fix missing parameter
Diffstat (limited to 'main')
-rw-r--r-- | main/streams/php_stream_plain_wrapper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/php_stream_plain_wrapper.h b/main/streams/php_stream_plain_wrapper.h index 4b3875577d..d88b30c479 100644 --- a/main/streams/php_stream_plain_wrapper.h +++ b/main/streams/php_stream_plain_wrapper.h @@ -31,7 +31,7 @@ PHPAPI php_stream *_php_stream_fopen(const char *filename, const char *mode, cha #define php_stream_fopen(filename, mode, opened) _php_stream_fopen((filename), (mode), (opened), 0 STREAMS_CC TSRMLS_CC) PHPAPI php_stream *_php_stream_fopen_with_path(char *filename, char *mode, char *path, char **opened_path, int options STREAMS_DC TSRMLS_DC); -#define php_stream_fopen_with_path(filename, mode, path, opened) _php_stream_fopen_with_path((filename), (mode), (path), (opened) STREAMS_CC TSRMLS_CC) +#define php_stream_fopen_with_path(filename, mode, path, opened) _php_stream_fopen_with_path((filename), (mode), (path), (opened), 0 STREAMS_CC TSRMLS_CC) PHPAPI php_stream *_php_stream_fopen_from_file(FILE *file, const char *mode STREAMS_DC TSRMLS_DC); #define php_stream_fopen_from_file(file, mode) _php_stream_fopen_from_file((file), (mode) STREAMS_CC TSRMLS_CC) |