esp32: Remove trialing semicolon from function-like macros

This commit removes trailing semicolons following a while(0) from
function-like macros in IDF. This will force those macros to be called
with a semicolon when called.
This commit is contained in:
Darian Leung
2019-02-28 21:58:47 +08:00
parent d82c80a07b
commit 59d1ecc78b
4 changed files with 7 additions and 7 deletions

View File

@@ -268,7 +268,7 @@ void ets_install_uart_printf(void);
ets_printf("%s %u \n", __FILE__, __LINE__); \
while (1) {}; \
} \
} while (0);
} while (0)
/**
* @}