Skip to content

Commit af9b0af

Browse files
committed
prvTaskCheckFreeStackSpace remove redundant cast
1 parent a2673db commit af9b0af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tasks.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6350,7 +6350,7 @@ static void prvCheckTasksWaitingTermination( void )
63506350

63516351
uxCount /= ( configSTACK_DEPTH_TYPE ) sizeof( StackType_t );
63526352

6353-
return ( configSTACK_DEPTH_TYPE ) uxCount;
6353+
return uxCount;
63546354
}
63556355

63566356
#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) */

0 commit comments

Comments
 (0)