timer: add missing ";" (#39)

Signed-off-by: wangfei_chen <wangfei_chen@realsil.com.cn>
Co-authored-by: wangfei_chen <wangfei_chen@realsil.com.cn>
This commit is contained in:
Saiiijchan
2025-03-10 11:13:40 +08:00
committed by GitHub
parent 4930934af3
commit b4e74b29fc

View File

@@ -276,7 +276,7 @@ int timer_settime( timer_t timerid,
} }
/* Set uxTimerCallbackInvocations before timer start. */ /* Set uxTimerCallbackInvocations before timer start. */
pxTimer->uxTimerCallbackInvocations = 0 pxTimer->uxTimerCallbackInvocations = 0;
/* If xNextTimerExpiration is still 0, that means that it_value specified /* If xNextTimerExpiration is still 0, that means that it_value specified
* an absolute timeout in the past. Per POSIX spec, a notification should be * an absolute timeout in the past. Per POSIX spec, a notification should be