From e056d52acff01a80f6ab9dbff1256320c8c47062 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Mon, 15 Sep 2014 10:57:04 +0200 Subject: [PATCH] fix type --- ext/iconv/iconv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c index d27270ece9..19270a55b9 100644 --- a/ext/iconv/iconv.c +++ b/ext/iconv/iconv.c @@ -415,7 +415,7 @@ static int php_iconv_output_handler(void **nothing, php_output_context *output_c } if (mimetype != NULL && !(output_context->op & PHP_OUTPUT_HANDLER_CLEAN)) { - zend_long len; + size_t len; char *p = strstr(get_output_encoding(TSRMLS_C), "//"); if (p) { -- 2.50.1