aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
Diffstat (limited to 'libbb')
-rw-r--r--libbb/uuencode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/uuencode.c b/libbb/uuencode.c
index 23e2123bc..46ca79654 100644
--- a/libbb/uuencode.c
+++ b/libbb/uuencode.c
@@ -203,7 +203,7 @@ void FAST_FUNC read_base64(FILE *src_stream, FILE *dst_stream, int flags)
out_tail = out_buf;
in_tail = decode_base64(&out_tail, in_buf);
- fwrite(out_buf, (out_tail - out_buf), 1, dst_stream);
+ fwrite(out_buf, (out_tail - out_buf), 1, dst_stream);
if (term_seen) {
/* Did we consume ALL characters? */