mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
ext/bzip: Fix [-Wsign-compare] warning
This commit is contained in:
parent
3869a67468
commit
b193b6eb5c
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ static ssize_t php_bz2iop_read(php_stream *stream, char *buf, size_t count)
|
||||||
|
|
||||||
static ssize_t php_bz2iop_write(php_stream *stream, const char *buf, size_t count)
|
static ssize_t php_bz2iop_write(php_stream *stream, const char *buf, size_t count)
|
||||||
{
|
{
|
||||||
ssize_t wrote = 0;
|
size_t wrote = 0;
|
||||||
struct php_bz2_stream_data_t *self = (struct php_bz2_stream_data_t *)stream->abstract;
|
struct php_bz2_stream_data_t *self = (struct php_bz2_stream_data_t *)stream->abstract;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue