diff options
Diffstat (limited to 'src/gettext.h')
-rw-r--r-- | src/gettext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gettext.h b/src/gettext.h index 862274a31..02aa6979d 100644 --- a/src/gettext.h +++ b/src/gettext.h @@ -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 { |