Skip to content

Commit

Permalink
Fix ATM decrement (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
xguerin authored Nov 15, 2023
1 parent 599fc67 commit 223e8bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stack/tcpv4/Processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ Processor::onFastTimer(const size_t ticks)
/*
* Skip the connection if the timer has not expired.
*/
if (--e.m_atm > 0) {
if (e.m_atm > 0) {
continue;
}
/*
Expand Down

0 comments on commit 223e8bf

Please sign in to comment.