commit | d583068e7d08634a9141b7101c66c0add14baeeb | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <senthil@uthcode.com> | Thu Oct 20 02:13:23 2011 +0800 |
committer | Senthil Kumaran <senthil@uthcode.com> | Thu Oct 20 02:13:23 2011 +0800 |
tree | 938266259897101dc6b3a33167a0d9361cc53cd1 | |
parent | ddd40312d502257adbcad4e9bdcecd237900f95a [diff] [blame] |
Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.c
diff --git a/Modules/_sre.c b/Modules/_sre.c index 200e8dd..cd95917 100644 --- a/Modules/_sre.c +++ b/Modules/_sre.c
@@ -2744,7 +2744,7 @@ #if defined(VVERBOSE) #define VTRACE(v) printf v #else -#define VTRACE(v) +#define VTRACE(v) do {} while(0) /* do nothing */ #endif /* Report failure */