From b4fcf764805dfa705c400a72733d4a13a2378daa Mon Sep 17 00:00:00 2001 From: orignal Date: Sat, 17 Aug 2024 17:52:42 -0400 Subject: [PATCH] fixed warning --- libi2pd/Streaming.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libi2pd/Streaming.cpp b/libi2pd/Streaming.cpp index bbb9d511..bc1672fe 100644 --- a/libi2pd/Streaming.cpp +++ b/libi2pd/Streaming.cpp @@ -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)