Correction of previous commits

This commit is contained in:
Abs62 2011-06-20 08:26:27 +04:00
parent 7de7fcc8df
commit e2004aaec4

View file

@ -5,8 +5,8 @@
#define DPRINTF(...)
#define FDPRINTF(...)
#else
#define DPRINTF(...) { printf(__VA_ARGS__); }
#define FDPRINTF(...) { fprintf(__VA_ARGS__); }
#define DPRINTF(...) printf(__VA_ARGS__)
#define FDPRINTF(...) fprintf(__VA_ARGS__)
#endif
#endif // __DPRINTF_HH_INCLUDED__