schedulerpriority.h: Fix gcc 12 warning

Changed the size of the array to 1 to get rid of the warning.

Updates #4662
This commit is contained in:
Ryan Long
2022-08-19 15:34:47 -05:00
committed by Joel Sherrill
parent c55bd16037
commit 5b87591515
@@ -94,7 +94,7 @@ typedef struct {
/**
* @brief One ready queue per priority level.
*/
Chain_Control Ready[ 0 ];
Chain_Control Ready[ 1 ];
} Scheduler_priority_Context;
/**