From bdcee2557bd243a1bfbde3353ebcfe3d82bf9fc5 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 22 Nov 1998 09:44:46 +0000 Subject: deleted some old DEBUG() code that wasn't used --- source/include/smb.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/source/include/smb.h b/source/include/smb.h index 47dde8c31f7..d0880c9cd3c 100644 --- a/source/include/smb.h +++ b/source/include/smb.h @@ -119,18 +119,6 @@ BOOL dbgtext(); ( (DEBUGLEVEL >= (level)) \ && dbghdr( level, FILE_MACRO, FUNCTION_MACRO, (__LINE__) ) ) -#if 0 - -#define DEBUG( level, body ) \ - ( ( 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 ) - -#else - #define DEBUG( level, body ) \ (void)( (DEBUGLEVEL >= (level)) \ && (dbghdr( level, FILE_MACRO, FUNCTION_MACRO, (__LINE__) )) \ @@ -139,8 +127,6 @@ BOOL dbgtext(); #define DEBUGADD( level, body ) \ (void)( (DEBUGLEVEL >= (level)) && (dbgtext body) ) -#endif - /* End Debugging code section. * -------------------------------------------------------------------------- ** */ -- cgit