fixed typo in debug PRINTF definition

This commit is contained in:
aho 2016-10-25 12:38:15 +03:00
parent d690dcae31
commit 8306aded79

View file

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