diff options
Diffstat (limited to 'toys/other/hexedit.c')
-rw-r--r-- | toys/other/hexedit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/other/hexedit.c b/toys/other/hexedit.c index a9d97aa2..ffa304c3 100644 --- a/toys/other/hexedit.c +++ b/toys/other/hexedit.c @@ -50,9 +50,9 @@ static int draw_char(FILE *fp, wchar_t broiled) if (broiled==127) broiled = 32; else broiled += 64; } - printf("%c", broiled); + printf("%c", (int)broiled); tty_esc("0m"); - } else printf("%c", broiled); + } else printf("%c", (int)broiled); } return 1; |