From d5b2413f48436d179199a4fe10d61192c2f542a0 Mon Sep 17 00:00:00 2001 From: mikisama <41532794+mikisama@users.noreply.github.com> Date: Mon, 14 Feb 2022 07:47:52 +0800 Subject: [PATCH] Fix typo (#454) --- include/queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/queue.h b/include/queue.h index 8e42fb501..811a1f314 100644 --- a/include/queue.h +++ b/include/queue.h @@ -978,7 +978,7 @@ void vQueueDelete( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; * void vBufferISR( void ) * { * char cIn; - * BaseType_t xHigherPrioritTaskWoken; + * BaseType_t xHigherPriorityTaskWoken; * * // We have not woken a task at the start of the ISR. * xHigherPriorityTaskWoken = pdFALSE;