Alan Teeder: fix incomplete dbg_printf for non-gcc.

This commit is contained in:
torsten 2009-08-20 15:24:32 +00:00 committed by Tim Moore
parent 6aa459073e
commit 1f3838b155
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ const char * get_attr_name( int val, int * pdef );
#if defined (__GNUC__)
#define dbg_printf(format,args...) ((void)0)
#else // defined (__GNUC__)
#define dbg_printf(
#define dbg_printf
#endif // defined (__GNUC__)
#endif // defined (_DEBUG)

View File

@ -37,7 +37,7 @@ const char * get_attr_name( int val, int * pdef );
#if defined (__GNUC__)
#define dbg_printf(format,args...) ((void)0)
#else // defined (__GNUC__)
#define dbg_printf(
#define dbg_printf
#endif // defined (__GNUC__)
#endif // defined (_DEBUG)