Fix warning.

This commit is contained in:
Steve Checkoway
2006-03-20 07:27:46 +00:00
parent 8597aa1bd6
commit b330d744fa
+1 -1
View File
@@ -73,7 +73,7 @@ static bool ConvertFromCharset( RString &txt, const char *charset )
if( inleft != 0 )
{
LOG->Warn( "iconv(UTF-8,%s) for \"%s\": whole buffer not converted (%i left)", charset, txt.c_str(), inleft );
LOG->Warn( "iconv(UTF-8,%s) for \"%s\": whole buffer not converted (%i left)", charset, txt.c_str(), int(inleft) );
return false;
}