Dustin J. Mitchell wrote on 14.07.2010 22:10:
> And, of course, once I sent this email, I found the real problem. I
> used a 32-bit quantity where I should have used a 64-bit quantity. If
> you're compiling from source, the fix is pretty simple:
>
> --- a/device-src/xfer-dest-taper-splitter.c
> +++ b/device-src/xfer-dest-taper-splitter.c
> @@ -84,7 +84,7 @@ typedef struct FileSlice {
> off_t offset;
>
> /* length of data to read */
> - gsize length;
> + off_t length;
> } FileSlice;
>
> /*
That's easy. I will run a test today and tell you if it works.
Thank you very much!
Jens