fix type declaration in s_ee_write_char for WIN32

original commit: 2f044f7088ed30e1be42adcf8a4c3e13f3fe06ec
This commit is contained in:
Bob Burger 2016-08-26 16:55:06 -04:00
parent 8679155d53
commit a8645cb2a3

View File

@ -521,8 +521,8 @@ static ptr s_ee_get_clipboard(void) {
return x; return x;
} }
static void s_ee_write_char(INT c) { static void s_ee_write_char(wchar_t c) {
if ((unsigned)c > 255) c = '?'; if (c > 255) c = '?';
putchar(c); putchar(c);
} }