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

Merge pull request #15365 from miri64/core/enh/debug-IS_ACTIVE

core: debug: remove parenthesis around ENABLE_DEBUG define
This commit is contained in:
Martine Lenders 2020-11-03 17:49:14 +01:00 committed by GitHub
commit dd81a070f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
/**