commit | 46079a1d7792dc3848667ddc875bd2467be1ddc1 | [log] [tgz] |
---|---|---|
author | Glenn L McGrath <bug1@ihug.co.nz> | Thu Apr 12 10:17:22 2001 +0000 |
committer | Glenn L McGrath <bug1@ihug.co.nz> | Thu Apr 12 10:17:22 2001 +0000 |
tree | 150b5f2e0c1b872b9241b02351da380109a53ab7 | |
parent | 327175137f4151b524566abf9176e574ed2429ab [diff] |
remove unused clearerr statements
diff --git a/libbb/copy_file_chunk.c b/libbb/copy_file_chunk.c index e887cbe..90b6b82 100644 --- a/libbb/copy_file_chunk.c +++ b/libbb/copy_file_chunk.c
@@ -37,8 +37,6 @@ off_t size, amount_written; char buffer[BUFSIZ]; /* BUFSIZ is declared in stdio.h */ - clearerr(src_file); - clearerr(dst_file); while (chunksize > 0) { if (chunksize > BUFSIZ) { size = BUFSIZ;