From 54b813ad69da77f9f074536e74769cc3f0006091 Mon Sep 17 00:00:00 2001 From: suda-morris <362953310@qq.com> Date: Thu, 26 Sep 2019 15:27:48 +0800 Subject: [PATCH] freertos: remove semicolon in xTaskNotifyGive --- components/freertos/include/freertos/task.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/freertos/include/freertos/task.h b/components/freertos/include/freertos/task.h index ab605bb301..73c3cd71c5 100644 --- a/components/freertos/include/freertos/task.h +++ b/components/freertos/include/freertos/task.h @@ -1965,7 +1965,7 @@ BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClea * * \ingroup TaskNotifications */ -#define xTaskNotifyGive( xTaskToNotify ) xTaskNotify( ( xTaskToNotify ), 0, eIncrement ); +#define xTaskNotifyGive( xTaskToNotify ) xTaskNotify( ( xTaskToNotify ), 0, eIncrement ) /** * Simplified macro for sending task notification from ISR.