diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2007-04-15 23:24:21 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2007-04-15 23:24:21 +0000 |
commit | e7e7e0a5a9d2df265abc069485c2cc1ff2d30ccb (patch) | |
tree | fffffa3ed67d30c4827978100df1fd4e97979538 /malloc.c | |
parent | b7185faf27223edfa3fad21c87d7dbf476059a5f (diff) | |
download | perl-e7e7e0a5a9d2df265abc069485c2cc1ff2d30ccb.tar.gz |
get rid of warning due to empty dangling else in malloc.c
p4raw-id: //depot/perl@30964
Diffstat (limited to 'malloc.c')
-rw-r--r-- | malloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) { |