summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/Common/Minimal/crhook.c
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS/Demo/Common/Minimal/crhook.c')
-rw-r--r--FreeRTOS/Demo/Common/Minimal/crhook.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/FreeRTOS/Demo/Common/Minimal/crhook.c b/FreeRTOS/Demo/Common/Minimal/crhook.c
index 693850c9f..de6b17e27 100644
--- a/FreeRTOS/Demo/Common/Minimal/crhook.c
+++ b/FreeRTOS/Demo/Common/Minimal/crhook.c
@@ -130,12 +130,12 @@ void vApplicationTickHook( void );
/* Queues used to send data FROM a co-routine TO the tick hook function.
The hook functions received (Rx's) on these queues. One queue per
'hook' co-routine. */
-static xQueueHandle xHookRxQueues[ hookNUM_HOOK_CO_ROUTINES ];
+static QueueHandle_t xHookRxQueues[ hookNUM_HOOK_CO_ROUTINES ];
/* Queues used to send data FROM the tick hook TO a co-routine function.
The hood function transmits (Tx's) on these queues. One queue per
'hook' co-routine. */
-static xQueueHandle xHookTxQueues[ hookNUM_HOOK_CO_ROUTINES ];
+static QueueHandle_t xHookTxQueues[ hookNUM_HOOK_CO_ROUTINES ];
/* Set to true if an error is detected at any time. */
static portBASE_TYPE xCoRoutineErrorDetected = pdFALSE;