get rid of warning due to empty dangling else in malloc.c
Dave Mitchell [Sun, 15 Apr 2007 23:24:21 +0000 (23:24 +0000)]
p4raw-id: //depot/perl@30964

malloc.c

index 988c905..ce406d2 100644 (file)
--- a/malloc.c
+++ b/malloc.c
@@ -1291,7 +1291,8 @@ write2(char *mess)
 
 #ifdef DEBUGGING
 #undef ASSERT
-#define        ASSERT(p,diag)   if (!(p)) botch(diag,STRINGIFY(p),__FILE__,__LINE__);  else
+#define        ASSERT(p,diag)   if (!(p)) botch(diag,STRINGIFY(p),__FILE__,__LINE__);
+
 static void
 botch(char *diag, char *s, char *file, int line)
 {