mirror of https://github.com/aria2/aria2
Removed warning when --file-allocation=falloc is used in MinGW32 build
The warning was just a mistake. SetFilePointerEx + SetEndOfFile actually allocate disk space.pull/36/head
parent
a6b18c868b
commit
bec0f6dc11
|
@ -442,11 +442,6 @@ void AbstractDiskWriter::allocate(int64_t offset, int64_t length)
|
||||||
}
|
}
|
||||||
#ifdef HAVE_SOME_FALLOCATE
|
#ifdef HAVE_SOME_FALLOCATE
|
||||||
# ifdef __MINGW32__
|
# ifdef __MINGW32__
|
||||||
// TODO Remove __MINGW32__ code because the current implementation
|
|
||||||
// does not behave like ftruncate or posix_ftruncate. Actually, it
|
|
||||||
// is the same sa ftruncate.
|
|
||||||
A2_LOG_WARN("--file-allocation=falloc is now deprecated for MinGW32 build. "
|
|
||||||
"Consider to use --file-allocation=trunc instead.");
|
|
||||||
truncate(offset+length);
|
truncate(offset+length);
|
||||||
# elif HAVE_FALLOCATE
|
# elif HAVE_FALLOCATE
|
||||||
// For linux, we use fallocate to detect file system supports
|
// For linux, we use fallocate to detect file system supports
|
||||||
|
|
Loading…
Reference in New Issue