diff options
author | Stef Walter <stef@thewalter.net> | 2004-08-23 22:50:10 +0000 |
---|---|---|
committer | Stef Walter <stef@thewalter.net> | 2004-08-23 22:50:10 +0000 |
commit | 82d27b14e9e3ac81e7fd37092806ef6ad685683b (patch) | |
tree | 0d6402dca7099f16865f19577786e8a8a581bdb8 /lib | |
parent | ff26b4137c6dc3d622336e725bd6f5630b301027 (diff) |
Fixes for windows
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |