From 8306aded79a00a488edc775c8cbbb9d059e3d32e Mon Sep 17 00:00:00 2001 From: aho Date: Tue, 25 Oct 2016 12:38:15 +0300 Subject: [PATCH] fixed typo in debug PRINTF definition --- apps/mqtt/mqtt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/mqtt/mqtt.c b/apps/mqtt/mqtt.c index f56df3a16..64b2d9454 100644 --- a/apps/mqtt/mqtt.c +++ b/apps/mqtt/mqtt.c @@ -65,7 +65,7 @@ /*---------------------------------------------------------------------------*/ #define DEBUG 0 #if DEBUG -#define PRINTF(...) PRINTF(__VA_ARGS__) +#define PRINTF(...) printf(__VA_ARGS__) #else #define PRINTF(...) #endif