diff options
author | Wez Furlong <wez@php.net> | 2002-09-23 14:50:21 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-09-23 14:50:21 +0000 |
commit | ad4afdf827f01be904450c77e144bf6ba910fbc0 (patch) | |
tree | b013c34c62eaa6ea7fa38ab406e0a54541388a26 /main/php_streams.h | |
parent | fd329d2cd1154d170ee61476be6c8a1d3c48fbb6 (diff) | |
download | php-git-ad4afdf827f01be904450c77e144bf6ba910fbc0.tar.gz |
fix some warnings.
Diffstat (limited to 'main/php_streams.h')
-rwxr-xr-x | main/php_streams.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/php_streams.h b/main/php_streams.h index 8044f05026..6c46ea6de1 100755 --- a/main/php_streams.h +++ b/main/php_streams.h @@ -255,8 +255,8 @@ struct _php_stream { off_t position; /* of underlying stream */ unsigned char *readbuf; size_t readbuflen; - size_t readpos; - size_t writepos; + off_t readpos; + off_t writepos; /* how much data to read when filling buffer */ size_t chunk_size; |