You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Allocate space for the stack used by the task being created. */
772
-
pxStack=pvPortMallocStack( ( ( ( size_t ) uxStackDepth ) *sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */
772
+
pxStack=( StackType_t* ) pvPortMallocStack( ( ( ( size_t ) uxStackDepth ) *sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */
0 commit comments