Fixed 32bit build
This commit is contained in:
parent
a16b608643
commit
c323b71a1f
1 changed files with 1 additions and 1 deletions
|
@ -481,7 +481,7 @@ rapidjson::Value ClientStatus::toJson(rapidjson::MemoryPoolAllocator<rapidjson::
|
||||||
|
|
||||||
clientStatus.AddMember("avg_time", m_avgTime, allocator);
|
clientStatus.AddMember("avg_time", m_avgTime, allocator);
|
||||||
|
|
||||||
clientStatus.AddMember("last_status_update", m_lastStatusUpdate, allocator);
|
clientStatus.AddMember("last_status_update", static_cast<uint64_t >(m_lastStatusUpdate), allocator);
|
||||||
|
|
||||||
return clientStatus;
|
return clientStatus;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue