summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/util/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/util.h b/lib/util/util.h
index 66861fba8b..0f09747a3a 100644
--- a/lib/util/util.h
+++ b/lib/util/util.h
@@ -52,7 +52,7 @@ extern const char *panic_action;
#ifdef DEVELOPER
#define SMB_ASSERT(b) do { if (!(b)) { \
DEBUG(0,("PANIC: assert failed at %s(%d): %s\n", \
- __FILE__, __LINE__, #b)), smb_panic("assert failed: " #b); }} while(0)
+ __FILE__, __LINE__, #b)); smb_panic("assert failed: " #b); }} while(0)
#else
/* redefine the assert macro for non-developer builds */
#define SMB_ASSERT(b) do { if (!(b)) { \