mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
fixed warning
This commit is contained in:
parent
fb8e0e1b5b
commit
b4fcf76480
@ -786,7 +786,7 @@ namespace stream
|
||||
{
|
||||
auto seqn = it->GetSeqn ();
|
||||
if (m_LastConfirmedReceivedSequenceNumber + numPackets < int(seqn)) break; // for limit inbound speed
|
||||
if (seqn > lastReceivedSeqn) lastReceivedSeqn = seqn;
|
||||
if ((int)seqn > lastReceivedSeqn) lastReceivedSeqn = seqn;
|
||||
}
|
||||
}
|
||||
if (lastReceivedSeqn < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user