From e46dd1c52930e2de7f20e764091b12386a5c42a4 Mon Sep 17 00:00:00 2001 From: RichardBarry Date: Sun, 6 Sep 2020 21:15:06 -0700 Subject: [PATCH] Replace the following code that was used to force an assert: configASSERT( pxTCB->ulNotifiedValue[ uxIndexToNotify ] == ~0UL ); with: configASSERT( xTickCount == ( TickType_t ) 0 ); Because the former generates a warning on 64-bit architectures. --- tasks.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks.c b/tasks.c index 072429183..f77178b62 100644 --- a/tasks.c +++ b/tasks.c @@ -5377,3 +5377,4 @@ static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, #endif #endif /* if ( configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H == 1 ) */ +