From 1b8a4244bdd911f156ce5bc6f9f13dcde68228cb Mon Sep 17 00:00:00 2001 From: Nicolas Date: Wed, 29 Mar 2023 15:23:45 +0200 Subject: [PATCH] add a missing comma (#651) --- include/task.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/task.h b/include/task.h index 054f43644..702f74dce 100644 --- a/include/task.h +++ b/include/task.h @@ -1664,7 +1664,7 @@ configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) PRIVIL /** * task.h * @code{c} - * void vApplicationStackOverflowHook( TaskHandle_t xTask char *pcTaskName); + * void vApplicationStackOverflowHook( TaskHandle_t xTask, char *pcTaskName); * @endcode * * The application stack overflow hook is called when a stack overflow is detected for a task.