From 7d1114c05d369d35bafd7764b820e25f746b58ce Mon Sep 17 00:00:00 2001 From: wangfei_chen Date: Mon, 10 Mar 2025 09:51:04 +0800 Subject: [PATCH] timer: add missing ";" Signed-off-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