From f62dfa20c8f2d512ff9f3add096c6b393aa0af1f Mon Sep 17 00:00:00 2001 From: alfred gedeon Date: Tue, 20 Oct 2020 15:37:14 -0700 Subject: [PATCH] Fix: C++ compiler warning (#203) --- include/task.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/task.h b/include/task.h index bce2a6b8c..c716132a5 100644 --- a/include/task.h +++ b/include/task.h @@ -129,7 +129,7 @@ typedef struct xMEMORY_REGION typedef struct xTASK_PARAMETERS { TaskFunction_t pvTaskCode; - const char * const pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const char * pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ configSTACK_DEPTH_TYPE usStackDepth; void * pvParameters; UBaseType_t uxPriority;