]> granicus.if.org Git - esp-idf/commitdiff
freertos: remove semicolon in xTaskNotifyGive
authorsuda-morris <362953310@qq.com>
Thu, 26 Sep 2019 07:27:48 +0000 (15:27 +0800)
committersuda-morris <362953310@qq.com>
Thu, 26 Sep 2019 07:27:48 +0000 (15:27 +0800)
components/freertos/include/freertos/task.h

index 8fb6ee22fb32dec1d777a14c25bc80ab411fc977..dd899d1bb43fc0ffec1358e94deadccdc150ffff 100644 (file)
@@ -1962,7 +1962,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.