From 82d27b14e9e3ac81e7fd37092806ef6ad685683b Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Mon, 23 Aug 2004 22:50:10 +0000 Subject: Fixes for windows --- lib/rlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/rlib.c b/lib/rlib.c index d973613..faca2b8 100644 --- a/lib/rlib.c +++ b/lib/rlib.c @@ -497,7 +497,7 @@ int repFile(r_context* ctx, FILE* fIn) ctx->stream.availIn = 0; /* While we either have more data to put in or more output... */ - while(!feof(fIn) || r == R_DONE) + while(r != R_DONE) { /* If rlib wants data then give it */ if(r == R_IN) -- cgit v1.2.3