Fix compiler warning on 32 bit platform

pull/251/merge
Tatsuhiro Tsujikawa 2015-06-09 03:24:14 +09:00
parent b0f440e631
commit 826c239ed2
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ std::string DHTNode::toString() const
ipaddr_.c_str(),
port_,
condition_,
rtt_.count());
static_cast<long int>(rtt_.count()));
}
void DHTNode::setID(const unsigned char* id)