Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
TrentHouliston committed Dec 25, 2024
1 parent 5713bb4 commit 6e1d21a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension/network/NUClearNetwork.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ namespace extension {
? 0xFF
: 0xFF >> (8 - (packet.packet_count % 8));

all_acked = all_acked && static_cast<int>((s->acked[i] & expected) == expected);
all_acked = all_acked && ((s->acked[i] & expected) == expected);
}

// The remote has received this entire packet we can erase our sender
Expand Down

0 comments on commit 6e1d21a

Please sign in to comment.