2008-06-21 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Fixed the code that refers static member variable using -> 
notation.
	* src/DefaultPeerStorage.cc
pull/1/head
Tatsuhiro Tsujikawa 2008-06-21 03:03:32 +00:00
parent 885ca4b795
commit 3389d86fac
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-06-21 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Fixed the code that refers static member variable using -> notation.
* src/DefaultPeerStorage.cc
2008-06-20 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
* Release 0.14.0

View File

@ -54,7 +54,7 @@ DefaultPeerStorage::DefaultPeerStorage(const BtContextHandle& btContext,
option(option),
logger(LogFactory::getInstance()),
btRuntime(BT_RUNTIME(btContext)),
maxPeerListSize(btRuntime->MAX_PEERS+(btRuntime->MAX_PEERS >> 2)),
maxPeerListSize(BtRuntime::MAX_PEERS+(BtRuntime::MAX_PEERS >> 2)),
removedPeerSessionDownloadLength(0),
removedPeerSessionUploadLength(0),
_seederStateChoke(new BtSeederStateChoke(btContext)),