mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Fixed compile warning/error with mingw32
This commit is contained in:
parent
ebc082747c
commit
3637291c22
3 changed files with 4 additions and 5 deletions
|
@ -35,7 +35,7 @@ void FallocFileAllocationIteratorTest::testAllocate()
|
|||
of.close();
|
||||
|
||||
File f(fn);
|
||||
CPPUNIT_ASSERT_EQUAL((uint64_t)10, f.size());
|
||||
CPPUNIT_ASSERT_EQUAL((off_t)10, f.size());
|
||||
|
||||
DefaultDiskWriter writer(fn);
|
||||
int64_t offset = 10;
|
||||
|
@ -48,7 +48,7 @@ void FallocFileAllocationIteratorTest::testAllocate()
|
|||
itr.allocateChunk();
|
||||
CPPUNIT_ASSERT(itr.finished());
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL((uint64_t)40960, f.size());
|
||||
CPPUNIT_ASSERT_EQUAL((off_t)40960, f.size());
|
||||
#endif // !HAVE_FALLOCATE
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue