fix gettext compile issues under win32

This commit is contained in:
MetaDucky 2013-11-14 20:09:37 +01:00 committed by kwolekr
parent 86ef7147b6
commit 0930911efa
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ inline wchar_t* chartowchar_t(const char *str)
int nResult = MultiByteToWideChar( CP_UTF8, 0, (LPCSTR) str, -1, 0, 0 );
if( nResult == 0 )
{
fprintf( stderr, "error: MultiByteToWideChar returned null\n" );
errorstream<<"gettext: MultiByteToWideChar returned null"<<std::endl;
}
else
{