1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

core: debug: remove parenthesis around ENABLE_DEBUG define

This commit is contained in:
Martine Lenders 2020-11-03 11:18:53 +01:00
parent e8cadc02d8
commit 2df29a6806
No known key found for this signature in database
GPG Key ID: CCD317364F63286F

View File

@ -68,7 +68,7 @@ extern "C" {
* @ref DEBUG() will generate output only if ENABLE_DEBUG is non-zero.
*/
#if !defined(ENABLE_DEBUG) || defined(DOXYGEN)
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#endif
/**