diff options
| author | Antony Dovgal <tony2001@php.net> | 2006-12-28 15:03:19 +0000 |
|---|---|---|
| committer | Antony Dovgal <tony2001@php.net> | 2006-12-28 15:03:19 +0000 |
| commit | a04c65f97f470948b5a637e6541e44d8368a73b5 (patch) | |
| tree | 5a89778f01152d5afe10ba014a69cbecfe1cb62b | |
| parent | 0958fdb46e9d6190bfd52ce5d4439086d38e0184 (diff) | |
| download | php-git-a04c65f97f470948b5a637e6541e44d8368a73b5.tar.gz | |
fix ZTS build
| -rw-r--r-- | ext/standard/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index c3b20f23a5..e57305a3a2 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -1288,7 +1288,7 @@ PHP_FUNCTION(fscanf) } if (((php_stream *)what)->readbuf_type == IS_UNICODE) { - u_buf = php_stream_u_get_line((php_stream *) what, NULL_ZSTR, 0, 0, NULL TSRMLS_CC); + u_buf = php_stream_u_get_line((php_stream *) what, NULL_ZSTR, 0, 0, NULL); if (u_buf == NULL) { efree(args); RETURN_FALSE; |
