From 31dc8f39bd607440d4abda767bc4bda9a8826b7e Mon Sep 17 00:00:00 2001 From: Ravishankar Bhagavandas Date: Thu, 17 Sep 2020 13:16:39 -0700 Subject: [PATCH] Fix: Rename parameter uxIndexToNotify to uxIndexToWaitOn (#174) --- include/task.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/task.h b/include/task.h index 1b82d8bdb..43a22d9c0 100644 --- a/include/task.h +++ b/include/task.h @@ -2558,7 +2558,7 @@ uint32_t ulTaskGenericNotifyTake( UBaseType_t uxIndexToWaitOn, #define ulTaskNotifyTake( xClearCountOnExit, xTicksToWait ) \ ulTaskGenericNotifyTake( ( tskDEFAULT_INDEX_TO_NOTIFY ), ( xClearCountOnExit ), ( xTicksToWait ) ) #define ulTaskNotifyTakeIndexed( uxIndexToWaitOn, xClearCountOnExit, xTicksToWait ) \ - ulTaskGenericNotifyTake( ( uxIndexToNotify ), ( xClearCountOnExit ), ( xTicksToWait ) ) + ulTaskGenericNotifyTake( ( uxIndexToWaitOn ), ( xClearCountOnExit ), ( xTicksToWait ) ) /** * task. h