C89 standard fixes, based on feedback from IRIX port

This commit is contained in:
Josh Coalson
2003-05-20 00:01:49 +00:00
parent 1e70455a92
commit 27e13541b2
11 changed files with 34 additions and 26 deletions

View File

@@ -88,7 +88,7 @@ char* FLAC_plugin__charset_convert_string (const char *string, char *from, char
outptr = out;
retry:
if (iconv(cd, &input, &length, &outptr, &outleft) == -1)
if (iconv(cd, (char**)&input, &length, &outptr, &outleft) == -1)
{
int used;
switch (errno)