diff options
author | Denys Vlasenko | 2011-10-28 14:07:44 +0200 |
---|---|---|
committer | Denys Vlasenko | 2011-10-28 14:07:44 +0200 |
commit | 73d249e704cfdf8632c120599c1ddfeceb81dd32 (patch) | |
tree | 713c5a51c3e5d81e4d979c7ad8a9809849663afd /libbb/uuencode.c | |
parent | 328f27fe447761f355104e7f524dc1115f16ca44 (diff) | |
download | busybox-73d249e704cfdf8632c120599c1ddfeceb81dd32.zip busybox-73d249e704cfdf8632c120599c1ddfeceb81dd32.tar.gz |
whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/uuencode.c')
-rw-r--r-- | libbb/uuencode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/uuencode.c b/libbb/uuencode.c index 23e2123..46ca796 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? */ |