diff options
author | Christopher R. Hertel <crh@samba.org> | 1998-08-11 15:54:15 +0000 |
---|---|---|
committer | Christopher R. Hertel <crh@samba.org> | 1998-08-11 15:54:15 +0000 |
commit | 7938e492bad71dc9a1d7618cf31c02d663a3fab0 (patch) | |
tree | 27fbfabafd0640b26fa43a8fd62e34f1ff70a085 /source3 | |
parent | 6a9170b1ae8685e8b84325911123fd73c062d685 (diff) | |
download | samba-7938e492bad71dc9a1d7618cf31c02d663a3fab0.tar.gz samba-7938e492bad71dc9a1d7618cf31c02d663a3fab0.tar.bz2 samba-7938e492bad71dc9a1d7618cf31c02d663a3fab0.zip |
Removed a stray semicolon in the DEBUGADD() macro.
(This used to be commit efa67d6b2b6d4a1e007dba5f2f5da5aff723fe59)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/smb.h | 10 |
1 files changed, 5 insertions, 5 deletions
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. * -------------------------------------------------------------------------- ** |