Skip to content
Snippets Groups Projects
Unverified Commit 778221ba authored by Jack Wilsdon's avatar Jack Wilsdon Committed by GitHub
Browse files

Add missing semicolon (#1750)

parent 73e71969
No related branches found
No related tags found
No related merge requests found
...@@ -206,7 +206,7 @@ static inline int8_t get_slot_index(struct irq_handler_chain_slot *slot) { ...@@ -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) { void irq_add_shared_handler(uint num, irq_handler_t handler, uint8_t order_priority) {
check_irq_param(num); check_irq_param(num);
#if PICO_NO_RAM_VECTOR_TABLE #if PICO_NO_RAM_VECTOR_TABLE
panic_unsupported() panic_unsupported();
#elif PICO_DISABLE_SHARED_IRQ_HANDLERS #elif PICO_DISABLE_SHARED_IRQ_HANDLERS
irq_set_exclusive_handler(num, handler); irq_set_exclusive_handler(num, handler);
#else #else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment