Remove debug from bit_pattern_matcher

This commit is contained in:
Ed Gonzalez 2015-06-11 16:52:59 -05:00
parent c429f359d1
commit aabd5424cb

View file

@ -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;