Skip to content

Commit

Permalink
Add missing semicolon (#1750)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwilsdon authored Jun 27, 2024
1 parent 73e7196 commit 778221b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rp2_common/hardware_irq/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ static inline int8_t get_slot_index(struct irq_handler_chain_slot *slot) {
void irq_add_shared_handler(uint num, irq_handler_t handler, uint8_t order_priority) {
check_irq_param(num);
#if PICO_NO_RAM_VECTOR_TABLE
panic_unsupported()
panic_unsupported();
#elif PICO_DISABLE_SHARED_IRQ_HANDLERS
irq_set_exclusive_handler(num, handler);
#else
Expand Down

0 comments on commit 778221b

Please sign in to comment.