From 7498f568523dc8a626e7f7459d6e781b050730d2 Mon Sep 17 00:00:00 2001 From: Marko Karppinen Date: Tue, 6 Aug 2002 19:39:12 +0000 Subject: [PATCH] Updated proto to match the function (fix compile bustage on osx) --- 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 8d407b6f2a..4b30c44c83 100644 --- a/ext/iconv/iconv.c +++ b/ext/iconv/iconv.c @@ -94,7 +94,7 @@ ZEND_DECLARE_MODULE_GLOBALS(iconv) ZEND_GET_MODULE(iconv) #endif -static int php_iconv_string(const char * in_str, unsigned int in_len, char ** out_str, unsigned int * out_len, const char * in_encoding, const char * out_encoding, int *err TSRMLS_DC); +static int php_iconv_string(const char * in_p, size_t in_len, char **out, size_t *out_len, const char *in_charset, const char *out_charset, int *err TSRMLS_DC); /* {{{ PHP_INI */ -- 2.40.0