From aabd5424cb67c5bcdcb2ae185f534c6d7b28593e Mon Sep 17 00:00:00 2001 From: Ed Gonzalez Date: Thu, 11 Jun 2015 16:52:59 -0500 Subject: [PATCH] Remove debug from bit_pattern_matcher --- DSP_API/ThumbDV/bit_pattern_matcher.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DSP_API/ThumbDV/bit_pattern_matcher.c b/DSP_API/ThumbDV/bit_pattern_matcher.c index 4a0ff24..7359283 100644 --- a/DSP_API/ThumbDV/bit_pattern_matcher.c +++ b/DSP_API/ThumbDV/bit_pattern_matcher.c @@ -107,7 +107,7 @@ BOOL bitPM_addBit(BIT_PM bpm, BOOL bit) } } -//#ifdef DEBUG_BIT_PM +#ifdef DEBUG_BIT_PM output(ANSI_GREEN "Match Found\nPat: "); for ( i = 0; i < bpm->length ; i++ ) { output("%d ", bpm->pattern[i]); @@ -118,7 +118,7 @@ BOOL bitPM_addBit(BIT_PM bpm, BOOL bit) } output("\n"); -//#endif +#endif /* If we make it here all checks have passed */ return TRUE;