Merge pull request #1903 from morphal/mqtt-debug-printf-fix

Fixed debug PRINTF definition in mqtt client
This commit is contained in:
George Oikonomou 2016-10-25 12:23:43 +01:00 committed by GitHub
commit 1d59651632

View file

@ -65,7 +65,7 @@
/*---------------------------------------------------------------------------*/
#define DEBUG 0
#if DEBUG
#define PRINTF(...) PRINTF(__VA_ARGS__)
#define PRINTF(...) printf(__VA_ARGS__)
#else
#define PRINTF(...)
#endif