Fixed a bunch of compiler warnings (mingw compiler).

This commit is contained in:
lotodore
2007-09-04 23:37:32 +00:00
parent 232382e28f
commit 0900d3844b
9 changed files with 14 additions and 12 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ utf8ToWchar(const char *str)
{
wchar_t *wstr = new wchar_t[reqLen];
wstr[0] = L'\0';
if (::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, str, len, wstr, reqLen) == reqLen)
if (::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, str, len, wstr, reqLen) == (int)reqLen)
retStr = wstr;
delete[] wstr;
}