fix linux gcc 7.3 error (warning)

pull/318/head
Ryan Tharp 5 years ago
parent bbbad826ef
commit 8e51d3a491

@ -75,7 +75,7 @@ bencode_write_bytestring(llarp_buffer_t* buff, const void* data, size_t sz)
bool
bencode_write_uint64(llarp_buffer_t* buff, uint64_t i)
{
if(!buff->writef("i%llu", i))
if(!buff->writef("i%lu", i))
{
return false;
}

Loading…
Cancel
Save