diff options
| author | Anatol Belski <ab@php.net> | 2014-08-26 13:20:21 +0200 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2014-08-26 13:20:21 +0200 |
| commit | b63ab83256868db44eecedde319a4c2a27a5a10f (patch) | |
| tree | b7769073ca61b10cadd0874041086f7791fcf307 /main/streams | |
| parent | d17790b35ed503a7f289c5730ceea3e46345b45a (diff) | |
| download | php-git-b63ab83256868db44eecedde319a4c2a27a5a10f.tar.gz | |
several signature and data type fixes
Diffstat (limited to 'main/streams')
| -rw-r--r-- | main/streams/userspace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/streams/userspace.c b/main/streams/userspace.c index aac7769eb8..61c28c4cea 100644 --- a/main/streams/userspace.c +++ b/main/streams/userspace.c @@ -751,7 +751,7 @@ static int php_userstreamop_flush(php_stream *stream TSRMLS_DC) return call_result; } -static int php_userstreamop_seek(php_stream *stream, off_t offset, int whence, off_t *newoffs TSRMLS_DC) +static int php_userstreamop_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffs TSRMLS_DC) { zval func_name; zval retval; @@ -1454,7 +1454,7 @@ static int php_userstreamop_closedir(php_stream *stream, int close_handle TSRMLS return 0; } -static int php_userstreamop_rewinddir(php_stream *stream, off_t offset, int whence, off_t *newoffs TSRMLS_DC) +static int php_userstreamop_rewinddir(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffs TSRMLS_DC) { zval func_name; zval retval; |
