diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-30 19:48:23 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-30 19:48:23 +0000 |
commit | ba2b982f47abd46203ae5358070a9a7744e6cefb (patch) | |
tree | 6b0bab1e0d6df7f659352acc7dc844663c11634c /coreutils/uuencode.c | |
parent | 1ab3906f1e1a1089635bc7f048ba60338e33d139 (diff) | |
download | busybox-w32-ba2b982f47abd46203ae5358070a9a7744e6cefb.tar.gz busybox-w32-ba2b982f47abd46203ae5358070a9a7744e6cefb.tar.bz2 busybox-w32-ba2b982f47abd46203ae5358070a9a7744e6cefb.zip |
clean up yet more annoying signed/unsigned mismatches and fixup
yet more incorrect types
git-svn-id: svn://busybox.net/trunk/busybox@13725 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 2660f4a19..ee07b084f 100644 --- a/coreutils/uuencode.c +++ b/coreutils/uuencode.c | |||
@@ -130,7 +130,7 @@ int uuencode_main(int argc, char **argv) | |||
130 | memset(&src_buf[size], 0, src_buf_size - size); | 130 | memset(&src_buf[size], 0, src_buf_size - size); |
131 | } | 131 | } |
132 | /* Encode the buffer we just read in */ | 132 | /* Encode the buffer we just read in */ |
133 | uuencode(src_buf, dst_buf, size, tbl); | 133 | uuencode((unsigned char*)src_buf, dst_buf, size, tbl); |
134 | 134 | ||
135 | putchar('\n'); | 135 | putchar('\n'); |
136 | if (tbl == tbl_std) { | 136 | if (tbl == tbl_std) { |