Explorar o código

Removed warning when --file-allocation=falloc is used in MinGW32 build

The warning was just a mistake. SetFilePointerEx + SetEndOfFile
actually allocate disk space.
Tatsuhiro Tsujikawa %!s(int64=13) %!d(string=hai) anos
pai
achega
bec0f6dc11
Modificáronse 1 ficheiros con 0 adicións e 5 borrados
  1. 0 5
      src/AbstractDiskWriter.cc

+ 0 - 5
src/AbstractDiskWriter.cc

@@ -442,11 +442,6 @@ void AbstractDiskWriter::allocate(int64_t offset, int64_t length)
   }
 #ifdef  HAVE_SOME_FALLOCATE
 # 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);
 # elif HAVE_FALLOCATE
   // For linux, we use fallocate to detect file system supports