mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
TraversalClient: Resolve -Wsign-compare warning
This commit is contained in:
parent
49f44c1334
commit
f97316a1e6
1 changed files with 1 additions and 1 deletions
|
@ -373,7 +373,7 @@ void TraversalClient::HandleTraversalTest()
|
||||||
waitCondition = 0;
|
waitCondition = 0;
|
||||||
break;
|
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)
|
raddr.host != m_portAlt || packet.requestId != m_TestRequestId)
|
||||||
{
|
{
|
||||||
// irrelevant packet, ignore
|
// irrelevant packet, ignore
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue