diff options
author | jcid <devnull@localhost> | 2008-09-28 21:01:17 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-09-28 21:01:17 +0200 |
commit | a5148a6be8e38918df3f919505305e73b2f59f2c (patch) | |
tree | 73a645254e306b4bd9796098a59ef9e1d8b6cea7 /src/colors.c | |
parent | 943d83abb4a2b16e4b53eae51da95e15c7d33955 (diff) |
- Switched from DEBUG_MSG to MSG.
Diffstat (limited to 'src/colors.c')
-rw-r--r-- | src/colors.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/colors.c b/src/colors.c index ddbc3b28..9a4c8c8e 100644 --- a/src/colors.c +++ b/src/colors.c @@ -14,8 +14,6 @@ #include <ctype.h> #include "colors.h" -#define DEBUG_LEVEL 5 -#include "debug.h" #include "msg.h" /* @@ -277,8 +275,8 @@ int32_t a_Color_parse (const char *subtag, int32_t default_color, int *err) } } - DEBUG_MSG(3, "subtag: %s\n", subtag); - DEBUG_MSG(3, "color : %X\n", ret_color); + _MSG("subtag: %s\n", subtag); + _MSG("color : %X\n", ret_color); *err = st; return ret_color; |