win32 fix

* windows does not have uint
pull/1576/head
Jeff Becker 3 years ago
parent 37b2f0f1e3
commit 0be62f0ad4
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -184,7 +184,7 @@ namespace llarp::net
ProtocolInfo::ExtractStatus() const
{
util::StatusObject status{
{"protocol", static_cast<uint>(protocol)},
{"protocol", static_cast<uint32_t>(protocol)},
};
if (port)
status["port"] = ToHost(*port).h;

Loading…
Cancel
Save