diff options
author | Tim Riker <tim@rikers.org> | 2006-01-25 00:08:53 +0000 |
---|---|---|
committer | Tim Riker <tim@rikers.org> | 2006-01-25 00:08:53 +0000 |
commit | c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4 (patch) | |
tree | 5f329b7d0c7f20ecced0dc7581a9ba6dc720d965 /libbb/copyfd.c | |
parent | f64ff682a3d58dbb627e760e6fe1ec21d9ccdf61 (diff) | |
download | busybox-w32-c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4.tar.gz busybox-w32-c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4.tar.bz2 busybox-w32-c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4.zip |
just whitespace
Diffstat (limited to 'libbb/copyfd.c')
-rw-r--r-- | libbb/copyfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/copyfd.c b/libbb/copyfd.c index 0b850884b..fcae8d3f7 100644 --- a/libbb/copyfd.c +++ b/libbb/copyfd.c | |||
@@ -32,7 +32,7 @@ static ssize_t bb_full_fd_action(int src_fd, int dst_fd, size_t size) | |||
32 | while (!size || total < size) | 32 | while (!size || total < size) |
33 | { | 33 | { |
34 | ssize_t wrote, xread; | 34 | ssize_t wrote, xread; |
35 | 35 | ||
36 | xread = safe_read(src_fd, buffer, | 36 | xread = safe_read(src_fd, buffer, |
37 | (!size || size - total > BUFSIZ) ? BUFSIZ : size - total); | 37 | (!size || size - total > BUFSIZ) ? BUFSIZ : size - total); |
38 | 38 | ||
@@ -53,7 +53,7 @@ static ssize_t bb_full_fd_action(int src_fd, int dst_fd, size_t size) | |||
53 | break; | 53 | break; |
54 | } | 54 | } |
55 | } | 55 | } |
56 | 56 | ||
57 | out: | 57 | out: |
58 | RELEASE_CONFIG_BUFFER(buffer); | 58 | RELEASE_CONFIG_BUFFER(buffer); |
59 | 59 | ||