aboutsummaryrefslogtreecommitdiff
path: root/toys/other/hexedit.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2016-02-25 18:10:35 -0600
committerRob Landley <rob@landley.net>2016-02-25 18:10:35 -0600
commitf9ca79a7b7762bdc698efb7c34ecaac63540eacb (patch)
treee1730bb91756fd57ef5ed0baa2b9f9bda1c5b786 /toys/other/hexedit.c
parent8fffeffdf259bc1a7c2c8055a0bbc3f4c508ed76 (diff)
downloadtoybox-f9ca79a7b7762bdc698efb7c34ecaac63540eacb.tar.gz
Fix more warnings on 32 bit builds.
Diffstat (limited to 'toys/other/hexedit.c')
-rw-r--r--toys/other/hexedit.c4
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;