Merge pull request #8187 from rafaljot/patch-5

Update InterruptVectors_Due.cpp
This commit is contained in:
Scott Lahteine 2017-10-31 14:14:08 -05:00 committed by GitHub
commit f1edf83720
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,7 +74,7 @@ static pfnISR_Handler* get_relocated_table_addr(void) {
pfnISR_Handler install_isr(IRQn_Type irq, pfnISR_Handler newHandler) {
// Get the address of the relocated table
const pfnISR_Handler *isrtab = get_relocated_table_addr();
pfnISR_Handler *isrtab = get_relocated_table_addr();
// Disable global interrupts
CRITICAL_SECTION_START;