Explorar o código

freertos: remove semicolon in xTaskNotifyGive

suda-morris %!s(int64=6) %!d(string=hai) anos
pai
achega
e381cec35a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      components/freertos/include/freertos/task.h

+ 1 - 1
components/freertos/include/freertos/task.h

@@ -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.