diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-06-19 11:19:54 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-06-19 11:37:59 -0400 |
commit | a25b59276cf9505a41280bad7847c33234f7e7c6 (patch) | |
tree | c5ecfc0a990e2757c079924901be073c9f0def07 /malloc.c | |
parent | 148f39b7de6eae9ddd59e0b0aff691d6abea7aca (diff) | |
download | perl-a25b59276cf9505a41280bad7847c33234f7e7c6.tar.gz |
Revert "/* NOTREACHED */ belongs *before* the unreachable."
This reverts commit 148f39b7de6eae9ddd59e0b0aff691d6abea7aca.
(Still needs more work, but wanted to see how well this passed with Jenkins.)
Diffstat (limited to 'malloc.c')
-rw-r--r-- | malloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1056,8 +1056,7 @@ emergency_sbrk(MEM_SIZE size) do_croak: MALLOC_UNLOCK; emergency_sbrk_croak("Out of memory during request for %"UVuf" bytes, total sbrk() is %"UVuf" bytes", (UV)size, (UV)(goodsbrk + sbrk_slack)); - /* NOTREACHED */ - assert(0); + assert(0); /* NOTREACHED */ return NULL; } |