From b49c586de46396018bf26828d78e591e67de3c0f Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Sat, 16 Apr 2005 20:48:04 +0000 Subject: r6358: merging SMB_ASSERT() changes from the release branch (This used to be commit 70178d5d27900d56ad1da3c99f3a63d863fb324c) --- source3/include/smb_macros.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'source3/include/smb_macros.h') diff --git a/source3/include/smb_macros.h b/source3/include/smb_macros.h index 04616eb8ab..6d1e382bb8 100644 --- a/source3/include/smb_macros.h +++ b/source3/include/smb_macros.h @@ -66,9 +66,16 @@ #define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0])) /* assert macros */ -#define SMB_ASSERT(b) ((b)?(void)0: \ +#ifdef DEVELOPER +#define SMB_ASSERT(b) ( (b) ? (void)0 : \ (DEBUG(0,("PANIC: assert failed at %s(%d)\n", \ __FILE__, __LINE__)), smb_panic("assert failed"))) +#else +/* redefine the assert macro for non-developer builds */ +#define SMB_ASSERT(b) ( (b) ? (void)0 : \ + (DEBUG(0,("PANIC: assert failed at %s(%d)\n", __FILE__, __LINE__)))) +#endif + #define SMB_ASSERT_ARRAY(a,n) SMB_ASSERT((sizeof(a)/sizeof((a)[0])) >= (n)) /* these are useful macros for checking validity of handles */ -- cgit