aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tr.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-05-09 18:07:15 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-05-09 18:07:15 +0000
commit023dc6798e05373bf33d64221bbe6a7265734c34 (patch)
treec111bcbb60f73790b29f7dd4f030f8c1e87b29a8 /coreutils/tr.c
parent98636eb08c5ecc216e18970e11f7021206ac9b04 (diff)
downloadbusybox-023dc6798e05373bf33d64221bbe6a7265734c34.tar.gz
fix warnings about pointer signedness
Diffstat (limited to 'coreutils/tr.c')
-rw-r--r--coreutils/tr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c
index d0af63a36..0d3284900 100644
--- a/coreutils/tr.c
+++ b/coreutils/tr.c
@@ -208,8 +208,8 @@ int tr_main(int argc ATTRIBUTE_UNUSED, char **argv)
if (*argv) {
if (argv[0][0] == '\0')
bb_error_msg_and_die("STRING2 cannot be empty");
- output_length = expand(*argv, output);
- map(vector, tr_buf, input_length, output, output_length);
+ output_length = expand(*argv, (char *)output);
+ map(vector, (unsigned char *)tr_buf, input_length, output, output_length);
}
for (i = 0; i < input_length; i++)
invec[(unsigned char)tr_buf[i]] = TRUE;