Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix copy/paste error in assertion in multi_modem_process_rec_frame
They happen to both be 9 right now, fortunately!
  • Loading branch information
doismellburning committed Oct 8, 2025
commit 551d95ce5cd4e662b7caf511ee1b76a670e973c0
2 changes: 1 addition & 1 deletion src/multi_modem.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ void multi_modem_process_rec_frame (int chan, int subchan, int slice, unsigned c

assert (chan >= 0 && chan < MAX_RADIO_CHANS);
assert (subchan >= 0 && subchan < MAX_SUBCHANS);
assert (slice >= 0 && slice < MAX_SUBCHANS);
assert (slice >= 0 && slice < MAX_SLICERS);

// Special encapsulation for AIS & EAS so they can be treated normally pretty much everywhere else.

Expand Down