Merge pull request #6849 from scartmell-arm/bug-critical-section-nordic

Add missing semicolon to NRF51 critical_section implementation
pull/6856/merge
Cruz Monrreal 2018-05-09 11:33:10 -05:00 committed by GitHub
commit e33fb60c3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}