From f1c363b5c76b85c2bd4ef3e9fcfac8d2ebdb5478 Mon Sep 17 00:00:00 2001 From: Terry Moore Date: Mon, 25 Jun 2018 11:25:57 -0400 Subject: [PATCH] Fix #78: typo in name of LMIC_DEBUG_LEVEL --- src/lmic/lmic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lmic/lmic.h b/src/lmic/lmic.h index d01a0530..7f2ea441 100644 --- a/src/lmic/lmic.h +++ b/src/lmic/lmic.h @@ -47,7 +47,7 @@ // if LMIC_DEBUG_PRINTF is now defined, just use it. This lets you do anything // you like with a sufficiently crazy header file. -#if LMIC_LEVEL_DEBUG > 0 +#if LMIC_DEBUG_LEVEL > 0 # ifndef LMIC_DEBUG_PRINTF // otherwise, check whether someone configured a print-function to be used, // and use it if so.