mirror of https://github.com/ARMmbed/mbed-os.git
Add missing semicolon to NRF51 critical_section implementation
parent
e43d21d4ef
commit
1dfea4168f
|
|
@ -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