diff options
author | Eric Andersen | 2006-01-30 19:48:23 +0000 |
---|---|---|
committer | Eric Andersen | 2006-01-30 19:48:23 +0000 |
commit | 5e678873f9ff7c95d43b278feee547ce989b3b20 (patch) | |
tree | 6b0bab1e0d6df7f659352acc7dc844663c11634c /coreutils/uuencode.c | |
parent | 2cdd4d56ffc3b467d5ffa76e3c4cd009dc311097 (diff) | |
download | busybox-5e678873f9ff7c95d43b278feee547ce989b3b20.zip busybox-5e678873f9ff7c95d43b278feee547ce989b3b20.tar.gz |
clean up yet more annoying signed/unsigned mismatches and fixup
yet more incorrect types
Diffstat (limited to 'coreutils/uuencode.c')
-rw-r--r-- | coreutils/uuencode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c index 2660f4a..ee07b08 100644 --- a/coreutils/uuencode.c +++ b/coreutils/uuencode.c @@ -130,7 +130,7 @@ int uuencode_main(int argc, char **argv) memset(&src_buf[size], 0, src_buf_size - size); } /* Encode the buffer we just read in */ - uuencode(src_buf, dst_buf, size, tbl); + uuencode((unsigned char*)src_buf, dst_buf, size, tbl); putchar('\n'); if (tbl == tbl_std) { |