libFLAC/cpu.c: Fix dfprintf macro for MSVS

This commit is contained in:
Erik de Castro Lopo
2016-07-01 06:41:18 +10:00
parent bba26a551f
commit 266e2d9699

View File

@@ -69,7 +69,7 @@
#define dfprintf fprintf
#else
/* This is bad practice, it should be a static void empty function */
#define dfprintf(file, format, args...)
#define dfprintf(file, format, args, ...)
#endif