From 7938e492bad71dc9a1d7618cf31c02d663a3fab0 Mon Sep 17 00:00:00 2001 From: "Christopher R. Hertel" Date: Tue, 11 Aug 1998 15:54:15 +0000 Subject: Removed a stray semicolon in the DEBUGADD() macro. (This used to be commit efa67d6b2b6d4a1e007dba5f2f5da5aff723fe59) --- source3/include/smb.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3') diff --git a/source3/include/smb.h b/source3/include/smb.h index bc44fbdd2b..5d408719ae 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -138,16 +138,16 @@ BOOL dbgtext(); * DEBUGADD( 2, ("Some additional text.\n") ); */ #define DEBUGLVL( level ) \ - ( (DEBUGLEVEL>=(level)) \ + ( (DEBUGLEVEL >= (level)) \ && dbghdr( level, FILE_MACRO, FUNCTION_MACRO, (__LINE__) ) ) #define DEBUG( level, body ) \ - ((DEBUGLEVEL>=(level) && \ - dbghdr(level, FILE_MACRO, FUNCTION_MACRO, (__LINE__)))? \ - (void)(dbgtext body) : (void)0) + ( ( DEBUGLEVEL >= (level) \ + && dbghdr( level, FILE_MACRO, FUNCTION_MACRO, (__LINE__) ) ) \ + ? (void)(dbgtext body) : (void)0 ) #define DEBUGADD( level, body ) \ - (DEBUGLEVEL>=(level)?(void)(dbgtext body) : (void)0); + ( (DEBUGLEVEL >= (level)) ? (void)(dbgtext body) : (void)0 ) /* End Debugging code section. * -------------------------------------------------------------------------- ** -- cgit