Skip to content

Commit

Permalink
fix gettext compile issues under win32
Browse files Browse the repository at this point in the history
  • Loading branch information
MetaDucky authored and kwolekr committed Nov 19, 2013
1 parent 86ef714 commit 0930911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gettext.h
Expand Up @@ -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
{
Expand Down

0 comments on commit 0930911

Please sign in to comment.