- use outdev file for dbgPrintf

This commit is contained in:
tudnai 2020-04-27 20:31:16 -07:00
parent d1f0c8e1db
commit 9e32839a4d
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
#ifdef DEBUG
//#define dbgPrintf(format, ...) printf (format, ## __VA_ARGS__)
//#define dbgPrintf(format, ...) if(outdev) fprintf(outdev, format, ## __VA_ARGS__)
#define dbgPrintf(format, ...)
#define dbgPrintf2(format, ...) if(outdev) fprintf(outdev, format, ## __VA_ARGS__)
#else