Herold Heiko <[EMAIL PROTECTED]> writes: > Downloaded: bytes in 2 files > > Note missing number of bytes.
This would indicate that the "%I64" format, which Wget uses to print the 64-bit "download sum", doesn't work for you. What does this program print? #include <stdio.h> int main (void) { __int64 n = 10000000000I64; // ten billion, doesn't fit in 32 bits printf("%I64\n", n); return 0; } It should print a line containing "10000000000". If it does, it means we're applying the wrong format. If it doesn't, then we must find another way of printing LARGE_INT quantities on Windows.