This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b7185fa
)
get rid of warning due to empty dangling else in malloc.c
author
Dave Mitchell
<davem@fdisolutions.com>
Sun, 15 Apr 2007 23:24:21 +0000
(23:24 +0000)
committer
Dave Mitchell
<davem@fdisolutions.com>
Sun, 15 Apr 2007 23:24:21 +0000
(23:24 +0000)
p4raw-id: //depot/perl@30964
malloc.c
patch
|
blob
|
blame
|
history
diff --git
a/malloc.c
b/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)
{