From f9ca79a7b7762bdc698efb7c34ecaac63540eacb Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 25 Feb 2016 18:10:35 -0600 Subject: Fix more warnings on 32 bit builds. --- toys/other/hexedit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys/other/hexedit.c') 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; -- cgit v1.2.3