diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-03-04 17:18:40 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-03-04 17:18:40 +0000 |
commit | aa40a02de86215ba19e71c37f513c20b2c74738a (patch) | |
tree | c303d78b3ec4c2814f41a769e9a7f35978e23139 | |
parent | 3940c673e3d70aead8fa797c1f95dd7435db13be (diff) | |
download | php-git-aa40a02de86215ba19e71c37f513c20b2c74738a.tar.gz |
64bit long fix
-rw-r--r-- | ext/iconv/iconv.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; |