Browse Source

fixed warning

pull/2094/head
orignal 3 months ago
parent
commit
b4fcf76480
  1. 2
      libi2pd/Streaming.cpp

2
libi2pd/Streaming.cpp

@ -786,7 +786,7 @@ namespace stream
{ {
auto seqn = it->GetSeqn (); auto seqn = it->GetSeqn ();
if (m_LastConfirmedReceivedSequenceNumber + numPackets < int(seqn)) break; // for limit inbound speed 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) if (lastReceivedSeqn < 0)

Loading…
Cancel
Save