From 31c09de03c656b7309888dbbc5240c31ed81537e Mon Sep 17 00:00:00 2001 From: "Christopher R. Hertel" Date: Mon, 3 Aug 1998 22:10:53 +0000 Subject: More formatting changes. Mostly converted some DEBUG() calls to DEBUGADD() so that we wouldn't get too many timestamps. Chris -)----- (This used to be commit 3e7e5fad378cf144927d9f2ffc82f80e150d44ab) --- source3/lib/charset.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'source3/lib/charset.c') diff --git a/source3/lib/charset.c b/source3/lib/charset.c index db331af115..5e9481f9bb 100644 --- a/source3/lib/charset.c +++ b/source3/lib/charset.c @@ -127,9 +127,10 @@ static void add_dos_char(int lower, BOOL map_lower_to_upper, { lower &= 0xff; upper &= 0xff; - DEBUG(6,("Adding chars 0x%x 0x%x (l->u = %s) (u->l = %s)\n",lower,upper, - map_lower_to_upper ? "True" : "False", - map_upper_to_lower ? "True" : "False")); + DEBUGADD( 6, ( "Adding chars 0x%x 0x%x (l->u = %s) (u->l = %s)\n", + lower, upper, + map_lower_to_upper ? "True" : "False", + map_upper_to_lower ? "True" : "False" ) ); if (lower) dos_char_map[lower] = 1; if (upper) dos_char_map[upper] = 1; lower_char_map[lower] = (char)lower; /* Define tolower(lower) */ -- cgit