mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
Use int64_t instead of off_t
Some classes such as DiskAdaptor, DiskWriter, FileAllocationIterator and ChecksumValidator are left unchanged.
This commit is contained in:
parent
4b03634f36
commit
1b874268a0
83 changed files with 334 additions and 336 deletions
|
@ -35,7 +35,7 @@ void FallocFileAllocationIteratorTest::testAllocate()
|
|||
of.close();
|
||||
|
||||
File f(fn);
|
||||
CPPUNIT_ASSERT_EQUAL((off_t)10, f.size());
|
||||
CPPUNIT_ASSERT_EQUAL((int64_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((off_t)40960, f.size());
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)40960, f.size());
|
||||
#endif // !HAVE_FALLOCATE
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue