Skip to content

Commit b193b6e

Browse files
committed
ext/bzip: Fix [-Wsign-compare] warning
1 parent 3869a67 commit b193b6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/bz2/bz2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ static ssize_t php_bz2iop_read(php_stream *stream, char *buf, size_t count)
9696

9797
static ssize_t php_bz2iop_write(php_stream *stream, const char *buf, size_t count)
9898
{
99-
ssize_t wrote = 0;
99+
size_t wrote = 0;
100100
struct php_bz2_stream_data_t *self = (struct php_bz2_stream_data_t *)stream->abstract;
101101

102102
do {

0 commit comments

Comments
 (0)