| commit | bd23289e4dd6449027e8071e802a4ac5c78739ba | [log] [tgz] |
|---|---|---|
| author | Jeremy Hylton <jeremy@alum.mit.edu> | Tue Jun 25 19:26:34 2002 +0000 |
| committer | Jeremy Hylton <jeremy@alum.mit.edu> | Tue Jun 25 19:26:34 2002 +0000 |
| tree | 1695bb0865d2934e203ddff402db9f8ea4e657d4 | |
| parent | 867de944b46b43af6b890dfdfe442f9d7b17a0b0 [diff] |
Silence compiler warning
diff --git a/Python/thread.c b/Python/thread.c index 1c5e685..c0b763c 100644 --- a/Python/thread.c +++ b/Python/thread.c
@@ -59,7 +59,7 @@ #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)