From 68ea1def22170f19da0ac7e590560a003704ae7e Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Tue, 8 Aug 2017 23:13:51 +0100 Subject: [PATCH 1/1] progs/rspit.c: Cope with large files. Missed this in my earlier `_FILE_OFFSET_BITS' pass. The calculations for the progress display and so on are all done in terms of bignums already, so there's no worries with the arithmetic. --- progs/rspit.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/progs/rspit.c b/progs/rspit.c index 9781333e..66a05389 100644 --- a/progs/rspit.c +++ b/progs/rspit.c @@ -27,6 +27,8 @@ /*----- Header files ------------------------------------------------------*/ +#define _FILE_OFFSET_BITS 64 + #include "config.h" #include -- 2.11.0