Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fb8da0b

Browse files
committedSep 1, 2015
Added missing #ifdef in WInterrupts.c... (oops)
See #2408
1 parent 7005918 commit fb8da0b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎avr/cores/arduino/WInterrupts.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ static volatile voidFuncPtr intFunc[EXTERNAL_NUM_INTERRUPTS] = {
6161
#if EXTERNAL_NUM_INTERRUPTS > 1
6262
nothing,
6363
#endif
64+
#if EXTERNAL_NUM_INTERRUPTS > 0
6465
nothing
66+
#endif
6567
};
6668
// volatile static voidFuncPtr twiIntFunc;
6769

0 commit comments

Comments
 (0)
Please sign in to comment.