summaryrefslogtreecommitdiff
path: root/source3/include/smb.h
diff options
context:
space:
mode:
Diffstat (limited to 'source3/include/smb.h')
-rw-r--r--source3/include/smb.h10
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.
* -------------------------------------------------------------------------- **