From b4e74b29fc8a6529cfecc7f220fb477a8ee2b542 Mon Sep 17 00:00:00 2001 From: Saiiijchan <49641410+Saiiijchan@users.noreply.github.com> Date: Mon, 10 Mar 2025 11:13:40 +0800 Subject: [PATCH] timer: add missing ";" (#39) Signed-off-by: wangfei_chen Co-authored-by: wangfei_chen --- FreeRTOS-Plus-POSIX/source/FreeRTOS_POSIX_timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FreeRTOS-Plus-POSIX/source/FreeRTOS_POSIX_timer.c b/FreeRTOS-Plus-POSIX/source/FreeRTOS_POSIX_timer.c index 9237de7..8fe20f5 100755 --- a/FreeRTOS-Plus-POSIX/source/FreeRTOS_POSIX_timer.c +++ b/FreeRTOS-Plus-POSIX/source/FreeRTOS_POSIX_timer.c @@ -276,7 +276,7 @@ int timer_settime( timer_t timerid, } /* Set uxTimerCallbackInvocations before timer start. */ - pxTimer->uxTimerCallbackInvocations = 0 + pxTimer->uxTimerCallbackInvocations = 0; /* If xNextTimerExpiration is still 0, that means that it_value specified * an absolute timeout in the past. Per POSIX spec, a notification should be