diff --git a/src_main/core/pichar.cpp b/src_main/core/pichar.cpp index 979088a1..f98e9b74 100644 --- a/src_main/core/pichar.cpp +++ b/src_main/core/pichar.cpp @@ -80,7 +80,7 @@ ushort charFromCodepage(const char * c, int size, const char * codepage, int * t wchar_t wc(0); mbtowc(0, 0, 0); // reset mbtowc ret = mbtowc(&wc, c, size); - printf("mbtowc = %d\n", ret); + //printf("mbtowc = %d\n", ret); if (ret < 1) return 0; return ushort(int(wc)); }