wallet2: fix build for windows (std::max again)

release-v0.5.1
moneromooo-monero 6 years ago
parent 2329d2f4c8
commit 9a39b7dd7f
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -1694,7 +1694,7 @@ void wallet2::get_short_chain_history(std::list<crypto::hash>& ids, uint64_t gra
{
size_t i = 0;
size_t current_multiplier = 1;
size_t blockchain_size = std::max(m_blockchain.size() / granularity * granularity, m_blockchain.offset());
size_t blockchain_size = std::max((size_t)(m_blockchain.size() / granularity * granularity), m_blockchain.offset());
size_t sz = blockchain_size - m_blockchain.offset();
if(!sz)
{

Loading…
Cancel
Save