aboutsummaryrefslogtreecommitdiff
path: root/toys/other
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2021-05-15 12:03:09 -0500
committerRob Landley <rob@landley.net>2021-05-15 12:03:09 -0500
commit2a8e198104e605b44d8955b6e247d579e098d776 (patch)
treea93cdd477dafa271c5547c5fd488e385dc388ebb /toys/other
parentd3025b14b9c13286b79f256d019a99da9425ea0e (diff)
downloadtoybox-2a8e198104e605b44d8955b6e247d579e098d776.tar.gz
Missed a couple in the wchar_t -> unsigned conversion.
Diffstat (limited to 'toys/other')
-rw-r--r--toys/other/ascii.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/ascii.c b/toys/other/ascii.c
index c9448a75..aa498721 100644
--- a/toys/other/ascii.c
+++ b/toys/other/ascii.c
@@ -56,7 +56,7 @@ void unicode_main(void)
{
int from, to, n;
char next, **args, *s;
- wchar_t wc;
+ unsigned wc;
// Loop through args, handling range, hex code, or character(s)
for (args = toys.optargs; *args; args++) {