Skip to content

Commit 740b86b

Browse files
committed
Update format
1 parent 459db30 commit 740b86b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ typedef struct tskTaskControlBlock /* The old naming convention is used to
310310
UBaseType_t uxPriority; /**< The priority of the task. 0 is the lowest priority. */
311311
StackType_t * pxStack; /**< Points to the start of the stack. */
312312
#if ( configNUMBER_OF_CORES > 1 )
313-
volatile BaseType_t xTaskRunState; /**< Used to identify the core the task is running on, if the task is running. Otherwise, identifies the task's state - not running or yielding. */
313+
volatile BaseType_t xTaskRunState; /**< Used to identify the core the task is running on, if the task is running. Otherwise, identifies the task's state - not running or yielding. */
314314
UBaseType_t uxTaskAttributes; /**< Task's attributes - currently used to identify the idle tasks. */
315315
#endif
316316
char pcTaskName[ configMAX_TASK_NAME_LEN ]; /**< Descriptive name given to the task when created. Facilitates debugging only. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */

0 commit comments

Comments
 (0)