mirror of https://github.com/aria2/aria2
2009-02-12 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Added LL for long long int constant. * test/FtpConnectionTest.ccpull/1/head
parent
1982ebaf1f
commit
c7cf936956
|
@ -1,3 +1,8 @@
|
|||
2009-02-12 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||
|
||||
Added LL for long long int constant.
|
||||
* test/FtpConnectionTest.cc
|
||||
|
||||
2009-02-12 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||
|
||||
Casted to unsigned int to suppress compiler warning on netbsd.
|
||||
|
|
|
@ -285,7 +285,7 @@ void FtpConnectionTest::testReceiveSizeResponse()
|
|||
waitRead(_clientSocket);
|
||||
uint64_t size;
|
||||
CPPUNIT_ASSERT_EQUAL((unsigned int)213, _ftp->receiveSizeResponse(size));
|
||||
CPPUNIT_ASSERT_EQUAL((uint64_t)4294967296, size);
|
||||
CPPUNIT_ASSERT_EQUAL((uint64_t)4294967296LL, size);
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Reference in New Issue