- fix type and silent warning

This commit is contained in:
Pierre Joye 2010-11-03 21:50:03 +00:00
parent 6c3ddc70ed
commit e61005f712

View File

@ -30,7 +30,7 @@ struct php_zip_stream_data_t {
/* {{{ php_zip_ops_read */
static size_t php_zip_ops_read(php_stream *stream, char *buf, size_t count TSRMLS_DC)
{
int n = 0;
size_t n = 0;
STREAM_DATA_FROM_STREAM();
if (self->za && self->zf) {