Skip to content

Commit 9111224

Browse files
authored
Merge pull request #20 from poofyOwl/develop
there was an extra ')'... caused build to fail
2 parents 2e535f7 + 7504a3c commit 9111224

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CMSIS/RTOS2/FreeRTOS/Source/cmsis_os2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ osStatus_t osDelayUntil (uint32_t ticks) {
844844

845845
/* check if target tick has not expired */
846846
if(delay && 0 == (delay >> (8 * sizeof(TickType_t) - 1))){
847-
vTaskDelayUntil (&tcnt, delay));
847+
vTaskDelayUntil (&tcnt, delay);
848848
}
849849
else
850850
{

0 commit comments

Comments
 (0)