fixed typo in debug PRINTF definition

master-01022017
aho 2016-10-25 12:38:15 +03:00
parent d690dcae31
commit 8306aded79
1 changed files with 1 additions and 1 deletions

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