summaryrefslogtreecommitdiff
path: root/ext/bz2/bz2.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bz2/bz2.c')
-rw-r--r--ext/bz2/bz2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bz2/bz2.c b/ext/bz2/bz2.c
index b2e8f40760..4bfebce706 100644
--- a/ext/bz2/bz2.c
+++ b/ext/bz2/bz2.c
@@ -377,7 +377,7 @@ static PHP_FUNCTION(bzopen)
{
zval *file; /* The file to open */
char *mode; /* The mode to open the stream with */
- int mode_len;
+ size_t mode_len;
BZFILE *bz; /* The compressed file stream */
php_stream *stream = NULL;
@@ -497,7 +497,7 @@ static PHP_FUNCTION(bzcompress)
block_size = 4, /* Block size for compression algorithm */
work_factor = 0, /* Work factor for compression algorithm */
argc; /* Argument count */
- int source_len; /* Length of the source data */
+ size_t source_len; /* Length of the source data */
unsigned int dest_len; /* Length of the destination buffer */
argc = ZEND_NUM_ARGS();