summaryrefslogtreecommitdiff
path: root/ext/bz2
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2009-05-15 17:28:08 +0000
committerKalle Sommer Nielsen <kalle@php.net>2009-05-15 17:28:08 +0000
commitdb137b4d69ab0f8200bd2564953954a8ebb7202c (patch)
treefa1f59291dc83b442e20cf7fef4a1379cdd96be9 /ext/bz2
parentfcede921b611444cf7e603d81e5cf603ea2ce1d1 (diff)
downloadphp-git-db137b4d69ab0f8200bd2564953954a8ebb7202c.tar.gz
MFH: Fix compiler warnings
Diffstat (limited to 'ext/bz2')
-rw-r--r--ext/bz2/bz2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/bz2/bz2.c b/ext/bz2/bz2.c
index 281fe380d8..3c0da61c2a 100644
--- a/ext/bz2/bz2.c
+++ b/ext/bz2/bz2.c
@@ -495,7 +495,7 @@ static PHP_FUNCTION(bzcompress)
+ .01 x length of data + 600 which is the largest size the results of the compression
could possibly be, at least that's what the libbz2 docs say (thanks to jeremy@nirvani.net
for pointing this out). */
- dest_len = source_len + (0.01 * source_len) + 600;
+ dest_len = (unsigned int) (source_len + (0.01 * source_len) + 600);
/* Allocate the destination buffer */
dest = emalloc(dest_len + 1);
@@ -559,15 +559,15 @@ static PHP_FUNCTION(bzdecompress)
/* compression is better then 2:1, need to allocate more memory */
bzs.avail_out = source_len;
size = (bzs.total_out_hi32 * (unsigned int) -1) + bzs.total_out_lo32;
- dest = safe_erealloc(dest, 1, bzs.avail_out+1, size );
+ dest = safe_erealloc(dest, 1, bzs.avail_out+1, (size_t) size );
bzs.next_out = dest + size;
}
if (error == BZ_STREAM_END || error == BZ_OK) {
size = (bzs.total_out_hi32 * (unsigned int) -1) + bzs.total_out_lo32;
- dest = safe_erealloc(dest, 1, size, 1);
+ dest = safe_erealloc(dest, 1, (size_t) size, 1);
dest[size] = '\0';
- RETVAL_STRINGL(dest, size, 0);
+ RETVAL_STRINGL(dest, (int) size, 0);
} else { /* real error */
efree(dest);
RETVAL_LONG(error);