diff options
author | Tim Riker | 2006-01-25 00:08:53 +0000 |
---|---|---|
committer | Tim Riker | 2006-01-25 00:08:53 +0000 |
commit | c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4 (patch) | |
tree | 5f329b7d0c7f20ecced0dc7581a9ba6dc720d965 /coreutils/uudecode.c | |
parent | f64ff682a3d58dbb627e760e6fe1ec21d9ccdf61 (diff) | |
download | busybox-c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4.zip busybox-c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4.tar.gz |
just whitespace
Diffstat (limited to 'coreutils/uudecode.c')
-rw-r--r-- | coreutils/uudecode.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c index b4bcc72..da6490a 100644 --- a/coreutils/uudecode.c +++ b/coreutils/uudecode.c @@ -56,7 +56,7 @@ static int read_stduu(FILE *src_stream, FILE *dst_stream) bb_error_msg_and_die("Short file"); } - while (length > 0) { + while (length > 0) { /* Merge four 6 bit chars to three 8 bit chars */ fputc(((line_ptr[0] - 0x20) & 077) << 2 | ((line_ptr[1] - 0x20) & 077) >> 4, dst_stream); line_ptr++; @@ -65,14 +65,14 @@ static int read_stduu(FILE *src_stream, FILE *dst_stream) break; } - fputc(((line_ptr[0] - 0x20) & 077) << 4 | ((line_ptr[1] - 0x20) & 077) >> 2, dst_stream); + fputc(((line_ptr[0] - 0x20) & 077) << 4 | ((line_ptr[1] - 0x20) & 077) >> 2, dst_stream); line_ptr++; length--; if (length == 0) { break; } - fputc(((line_ptr[0] - 0x20) & 077) << 6 | ((line_ptr[1] - 0x20) & 077), dst_stream); + fputc(((line_ptr[0] - 0x20) & 077) << 6 | ((line_ptr[1] - 0x20) & 077), dst_stream); line_ptr += 2; length -= 2; } @@ -130,10 +130,10 @@ static int read_base64(FILE *src_stream, FILE *dst_stream) /* Merge 6 bit chars to 8 bit */ fputc(translated[0] << 2 | translated[1] >> 4, dst_stream); if (count > 2) { - fputc(translated[1] << 4 | translated[2] >> 2, dst_stream); + fputc(translated[1] << 4 | translated[2] >> 2, dst_stream); } if (count > 3) { - fputc(translated[2] << 6 | translated[3], dst_stream); + fputc(translated[2] << 6 | translated[3], dst_stream); } } } |