Commit 8f270cb5 authored by Christophe Mutricy's avatar Christophe Mutricy

unicode.c: Fix MB2MB() by removing spurious ';'. Thanks to ericx on IRC.

parent 147fdab0
...@@ -140,7 +140,7 @@ static char *MB2MB( const char *string, UINT fromCP, UINT toCP ) ...@@ -140,7 +140,7 @@ static char *MB2MB( const char *string, UINT fromCP, UINT toCP )
int len; int len;
len = MultiByteToWideChar( fromCP, 0, string, -1, NULL, 0 ); len = MultiByteToWideChar( fromCP, 0, string, -1, NULL, 0 );
if( len == 0 ); if( len == 0 )
return NULL; return NULL;
wchar_t wide[len]; wchar_t wide[len];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment