Skip to content

Commit

Permalink
Fix fallthrough
Browse files Browse the repository at this point in the history
  • Loading branch information
garazdawi committed Feb 20, 2025
1 parent 418ab46 commit 738b0b5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion erts/emulator/beam/emu/beam_emu.c
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,9 @@ void process_main(ErtsSchedulerData *esdp)
Goto(*I);
}
}
ERTS_FALLTHROUGH();
#ifdef NO_JUMP_TABLE
ERTS_FALLTHROUGH();
#endif
OpCase(error_action_code): {
handle_error:
SWAPOUT;
Expand Down

0 comments on commit 738b0b5

Please sign in to comment.