Skip to content

Commit 226219f

Browse files
committed
rtos: fix style in rtos wait
Found during editing copyright message
1 parent fd301c7 commit 226219f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/mbed_wait_api_rtos.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void wait_ms(int ms)
5454
if (core_util_is_isr_active() || !core_util_are_interrupts_enabled()) {
5555
#if defined(MBED_TRAP_ERRORS_ENABLED) && MBED_TRAP_ERRORS_ENABLED
5656
MBED_ERROR(MBED_MAKE_ERROR(MBED_MODULE_PLATFORM, MBED_ERROR_INVALID_OPERATION),
57-
"Deprecated behavior: milli-sec delay should not be used in interrupt.\n");
57+
"Deprecated behavior: milli-sec delay should not be used in interrupt.\n");
5858
#else
5959
wait_us(ms * 1000);
6060
#endif

0 commit comments

Comments
 (0)