mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 22:17:38 +03:00
Replaced uint64_t with off_t or int64_t.
Since off_t is int64_t with LFS, we cannot take advantage of extra capacity of uint64_t.
This commit is contained in:
parent
f25e67b017
commit
12988e5282
127 changed files with 457 additions and 490 deletions
|
@ -119,7 +119,7 @@ void HandshakeExtensionMessageTest::testDoReceivedAction()
|
|||
CPPUNIT_ASSERT_EQUAL((uint8_t)2, peer->getExtensionMessageID("a2_dht"));
|
||||
CPPUNIT_ASSERT(peer->isSeeder());
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)1024, attrs->metadataSize);
|
||||
CPPUNIT_ASSERT_EQUAL((uint64_t)1024, dctx->getTotalLength());
|
||||
CPPUNIT_ASSERT_EQUAL((off_t)1024, dctx->getTotalLength());
|
||||
CPPUNIT_ASSERT(dctx->knowsTotalLength());
|
||||
|
||||
// See Peer is not marked as seeder if !attrs->metadata.empty()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue