mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +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
|
@ -287,9 +287,9 @@ void FtpConnectionTest::testReceiveSizeResponse()
|
|||
{
|
||||
serverSocket_->writeData("213 4294967296\r\n");
|
||||
waitRead(clientSocket_);
|
||||
off_t size;
|
||||
int64_t size;
|
||||
CPPUNIT_ASSERT_EQUAL(213, ftp_->receiveSizeResponse(size));
|
||||
CPPUNIT_ASSERT_EQUAL((off_t)4294967296LL, size);
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)4294967296LL, size);
|
||||
}
|
||||
|
||||
void FtpConnectionTest::testSendRetr()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue