diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util/samba_util.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/util/samba_util.h b/lib/util/samba_util.h index f5577e6d8ef..f4ffe6472ca 100644 --- a/lib/util/samba_util.h +++ b/lib/util/samba_util.h @@ -45,7 +45,6 @@ extern const char *panic_action; /** * assert macros */ -#ifdef DEVELOPER #define SMB_ASSERT(b) \ do { \ if (!(b)) { \ @@ -54,12 +53,6 @@ do { \ smb_panic("assert failed: " #b); \ } \ } while(0) -#else -/* redefine the assert macro for non-developer builds */ -#define SMB_ASSERT(b) do { if (!(b)) { \ - DEBUG(0,("PANIC: assert failed at %s(%d): %s\n", \ - __FILE__, __LINE__, #b)); }} while (0) -#endif #ifndef ABS #define ABS(a) ((a)>0?(a):(-(a))) |