mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 16:16:05 +00:00
Merge pull request #12394 from lioncash/compare
General: Resolve -Wsign-compare warnings
This commit is contained in:
commit
2c6bf2d224
6 changed files with 9 additions and 8 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue