From 1bd60400f052ed252481296f8a95838772bab2be Mon Sep 17 00:00:00 2001 From: Lotte Steenbrink Date: Wed, 17 Dec 2014 03:03:33 -0800 Subject: [PATCH] add parentheses to ENABLE_DEBUG in CBOR_NO_PRINT --- sys/cbor/cbor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/cbor/cbor.c b/sys/cbor/cbor.c index 4730c378ba..2061fff908 100644 --- a/sys/cbor/cbor.c +++ b/sys/cbor/cbor.c @@ -26,7 +26,7 @@ /* Automatically enable/disable ENABLE_DEBUG based on CBOR_NO_PRINT */ #ifndef CBOR_NO_PRINT -#define ENABLE_DEBUG 1 +#define ENABLE_DEBUG (1) #include "debug.h" #endif