Add missing semicolon to NRF51 critical_section implementation

pull/6849/head
Steven Cartmell 2018-05-09 10:52:53 +01:00
parent e43d21d4ef
commit 1dfea4168f
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}