From 08efd5324c7de88d76ab78676de7a84bf7b3bcc0 Mon Sep 17 00:00:00 2001 From: bug1 Date: Thu, 12 Apr 2001 10:17:22 +0000 Subject: remove unused clearerr statements git-svn-id: svn://busybox.net/trunk/busybox@2329 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- libbb/copy_file_chunk.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'libbb') diff --git a/libbb/copy_file_chunk.c b/libbb/copy_file_chunk.c index e887cbe9f..90b6b8238 100644 --- a/libbb/copy_file_chunk.c +++ b/libbb/copy_file_chunk.c @@ -37,8 +37,6 @@ extern int copy_file_chunk(FILE *src_file, FILE *dst_file, off_t chunksize) 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; -- cgit v1.2.3-55-g6feb