Silence compiler warning

This commit is contained in:
Jeremy Hylton 2002-06-25 19:26:34 +00:00
parent 867de944b4
commit bd23289e4d
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ extern char *getenv(const char *);
#ifdef Py_DEBUG
static int thread_debug = 0;
#define dprintf(args) ((thread_debug & 1) && printf args)
#define dprintf(args) (void)((thread_debug & 1) && printf args)
#define d2printf(args) ((thread_debug & 8) && printf args)
#else
#define dprintf(args)