mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 02:54:01 +01: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 a new issue