Prefix debug symbols with debug_ to reduce the namesapce pollution

This commit is contained in:
Holger Freyther 2008-12-27 12:46:49 +00:00
parent 00125f2173
commit 5b9c8c7170
1 changed files with 2 additions and 2 deletions

View File

@ -24,10 +24,10 @@
int main(int argc, char** argv)
{
parse_category_mask("DRLL");
debug_parse_category_mask("DRLL");
DEBUGP(DCC, "You should not see this\n");
parse_category_mask("DRLL:DCC");
debug_parse_category_mask("DRLL:DCC");
DEBUGP(DRLL, "You should see this\n");
DEBUGP(DCC, "You should see this\n");
DEBUGP(DMM, "You should not see this\n");