mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #6849 from scartmell-arm/bug-critical-section-nordic
Add missing semicolon to NRF51 critical_section implementationpull/6856/merge
commit
e33fb60c3d
|
@ -72,7 +72,7 @@ void hal_critical_section_exit(void)
|
|||
|
||||
// Restore the state as it was prior to entering the critical section.
|
||||
if (_use_softdevice_routine) {
|
||||
sd_nvic_critical_region_exit(_state._sd_state)
|
||||
sd_nvic_critical_region_exit(_state._sd_state);
|
||||
} else {
|
||||
__set_PRIMASK(_state._PRIMASK_state);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue