Procházet zdrojové kódy

freertos: remove semicolon in xTaskNotifyGive

suda-morris před 6 roky
rodič
revize
9351ae7dc9
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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.