Skip to content

Commit e33fb60

Browse files
author
Cruz Monrreal
authored
Merge pull request #6849 from scartmell-arm/bug-critical-section-nordic
Add missing semicolon to NRF51 critical_section implementation
2 parents a2370d5 + 1dfea41 commit e33fb60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/FEATURE_BLE/targets/TARGET_NORDIC/TARGET_MCU_NRF51822/hal_patch/critical_section_api.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ void hal_critical_section_exit(void)
7272

7373
// Restore the state as it was prior to entering the critical section.
7474
if (_use_softdevice_routine) {
75-
sd_nvic_critical_region_exit(_state._sd_state)
75+
sd_nvic_critical_region_exit(_state._sd_state);
7676
} else {
7777
__set_PRIMASK(_state._PRIMASK_state);
7878
}

0 commit comments

Comments
 (0)