From 148f39b7de6eae9ddd59e0b0aff691d6abea7aca Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Thu, 19 Jun 2014 06:43:08 -0400 Subject: /* NOTREACHED */ belongs *before* the unreachable. Definitely not *after* it. It marks the start of the unreachable, not the first unrechable line. And if they are in that order, it looks better to linebreak after the lint hint. --- malloc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'malloc.c') diff --git a/malloc.c b/malloc.c index a99663ef56..2ba76b173d 100644 --- a/malloc.c +++ b/malloc.c @@ -1056,7 +1056,8 @@ 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)); - assert(0); /* NOTREACHED */ + /* NOTREACHED */ + assert(0); return NULL; } -- cgit v1.2.1