From aa40a02de86215ba19e71c37f513c20b2c74738a Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Tue, 4 Mar 2003 17:18:40 +0000 Subject: [PATCH] 64bit long fix --- ext/iconv/iconv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c index cdf13887f3..44aee0fb27 100644 --- a/ext/iconv/iconv.c +++ b/ext/iconv/iconv.c @@ -1731,7 +1731,8 @@ PHP_FUNCTION(ob_iconv_handler) char *out_buffer, *content_type, *mimetype = NULL, *s; zval *zv_string; unsigned int out_len; - int status, mimetype_alloced = 0; + int mimetype_alloced = 0; + long status; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zl", &zv_string, &status) == FAILURE) return; -- 2.50.1