From 089d1e109b4bc1a8011f7b1973c9cd71e633689b Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 7 Aug 2004 19:02:41 +0000 Subject: [PATCH] disable regex debug prints --- stepmania/src/pcre/pcre.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/pcre/pcre.c b/stepmania/src/pcre/pcre.c index 74aaeac89f..bc2b519b08 100644 --- a/stepmania/src/pcre/pcre.c +++ b/stepmania/src/pcre/pcre.c @@ -40,10 +40,10 @@ restrictions: inline, and there are *still* stupid compilers about that don't like indented pre-processor statements. I suppose it's only been 10 years... */ +#undef DEBUG // don't do any debug printing. -Chris + #ifdef DEBUG -// disable debug printing. -Chris -//#define DPRINTF(p) printf p -#define DPRINTF(p) /*nothing*/ +#define DPRINTF(p) printf p #else #define DPRINTF(p) /*nothing*/ #endif