diff options
author | Ard Biesheuvel <abies@php.net> | 2004-03-08 23:04:33 +0000 |
---|---|---|
committer | Ard Biesheuvel <abies@php.net> | 2004-03-08 23:04:33 +0000 |
commit | b703fe79f65ee6cd87f32f3e225465062db09bf4 (patch) | |
tree | d1ab42c73acc6acf37c2c6fb2ece4094c4a154f4 | |
parent | d2d091b2af90558488be15eb7e385a2c87f0382f (diff) | |
download | php-git-b703fe79f65ee6cd87f32f3e225465062db09bf4.tar.gz |
Fix warning
-rw-r--r-- | ext/xmlrpc/libxmlrpc/encodings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/xmlrpc/libxmlrpc/encodings.c b/ext/xmlrpc/libxmlrpc/encodings.c index f3aebff9c9..1637a0961c 100644 --- a/ext/xmlrpc/libxmlrpc/encodings.c +++ b/ext/xmlrpc/libxmlrpc/encodings.c @@ -70,7 +70,7 @@ static char* convert(const char* src, int src_len, int *new_len, const char* fro if(outbuf) { out_ptr = (char*)outbuf; while(inlenleft) { - st = iconv(ic, &src, &inlenleft, &out_ptr, &outlenleft); + st = iconv(ic, (char**)&src, &inlenleft, &out_ptr, &outlenleft); if(st == -1) { if(errno == E2BIG) { int diff = out_ptr - outbuf; |