aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uuencode.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/uuencode.c')
-rw-r--r--coreutils/uuencode.c2
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) {