mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 06:51:17 +01:00
TraversalClient: Resolve -Wsign-compare warning
This commit is contained in:
parent
49f44c1334
commit
f97316a1e6
@ -373,7 +373,7 @@ void TraversalClient::HandleTraversalTest()
|
||||
waitCondition = 0;
|
||||
break;
|
||||
}
|
||||
else if (rv < sizeof(packet) || raddr.host != m_ServerAddress.host ||
|
||||
else if (rv < int(sizeof(packet)) || raddr.host != m_ServerAddress.host ||
|
||||
raddr.host != m_portAlt || packet.requestId != m_TestRequestId)
|
||||
{
|
||||
// irrelevant packet, ignore
|
||||
|
Loading…
x
Reference in New Issue
Block a user