Skip to content

Commit f62dfa2

Browse files
authored
Fix: C++ compiler warning (#203)
1 parent 5fb26de commit f62dfa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/task.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ typedef struct xMEMORY_REGION
129129
typedef struct xTASK_PARAMETERS
130130
{
131131
TaskFunction_t pvTaskCode;
132-
const char * const pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
132+
const char * pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
133133
configSTACK_DEPTH_TYPE usStackDepth;
134134
void * pvParameters;
135135
UBaseType_t uxPriority;

0 commit comments

Comments
 (0)