fixes to remove warnings from gcc-4.0.0

This commit is contained in:
Josh Coalson
2005-08-24 07:39:25 +00:00
parent d263e6eec0
commit b4de1692f3
5 changed files with 11 additions and 11 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, (char**)&input, &length, &outptr, &outleft) == -1)
if (iconv(cd, (char**)&input, &length, &outptr, &outleft) == (size_t)(-1))
{
int used;
switch (errno)