Skip to content

Commit b68007c

Browse files
committed
Fix formatting
1 parent 01cde02 commit b68007c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tasks.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ typedef struct tskTaskControlBlock /* The old naming convention is used to
416416
/* See the comments in FreeRTOS.h with the definition of
417417
* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE. */
418418
#if ( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 )
419-
uint8_t ucStaticallyAllocated; /**< Set to pdTRUE if the task is a statically allocated to ensure no attempt is made to free the memory. */
419+
uint8_t ucStaticallyAllocated; /**< Set to pdTRUE if the task is a statically allocated to ensure no attempt is made to free the memory. */
420420
#endif
421421

422422
#if ( INCLUDE_xTaskAbortDelay == 1 )
@@ -3613,7 +3613,7 @@ static BaseType_t prvCreateIdleTasks( void )
36133613
cIdleName,
36143614
ulIdleTaskStackSize,
36153615
( void * ) NULL,
3616-
portPRIVILEGE_BIT, /* In effect ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), but tskIDLE_PRIORITY is zero. */
3616+
portPRIVILEGE_BIT, /* In effect ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), but tskIDLE_PRIORITY is zero. */
36173617
pxIdleTaskStackBuffer,
36183618
pxIdleTaskTCBBuffer );
36193619

@@ -3633,7 +3633,7 @@ static BaseType_t prvCreateIdleTasks( void )
36333633
cIdleName,
36343634
configMINIMAL_STACK_SIZE,
36353635
( void * ) NULL,
3636-
portPRIVILEGE_BIT, /* In effect ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), but tskIDLE_PRIORITY is zero. */
3636+
portPRIVILEGE_BIT, /* In effect ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), but tskIDLE_PRIORITY is zero. */
36373637
&xIdleTaskHandles[ xCoreID ] );
36383638
}
36393639
#endif /* configSUPPORT_STATIC_ALLOCATION */

0 commit comments

Comments
 (0)