diff options
author | BurnZeZ <brz-9dev@feline.systems> | 2016-03-19 17:35:36 -0400 |
---|---|---|
committer | BurnZeZ <brz-9dev@feline.systems> | 2016-03-19 17:35:36 -0400 |
commit | e387915a8f408ad8d40ea93f6a72a7a782e58899 (patch) | |
tree | 65ff8117991d0e657c2d08aa5bb08e15518db453 /sys/src/libc/port/malloc.c | |
parent | d094b7faa1151c60d829a3988bae819f76be75d3 (diff) |
libc: trailing whitespace cleanup
Diffstat (limited to 'sys/src/libc/port/malloc.c')
-rw-r--r-- | sys/src/libc/port/malloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/src/libc/port/malloc.c b/sys/src/libc/port/malloc.c index af52dce42..a96ff8f78 100644 --- a/sys/src/libc/port/malloc.c +++ b/sys/src/libc/port/malloc.c @@ -135,7 +135,7 @@ pprint(Pool *p, char *fmt, ...) static char panicbuf[256]; static void -ppanic(Pool *p, char *fmt, ...) +ppanic(Pool *p, char *fmt, ...) { va_list v; int n; @@ -170,7 +170,7 @@ ppanic(Pool *p, char *fmt, ...) /* - except the code for malloc(), which alternately doesn't clear or does. - */ /* - * Npadlong is the number of ulongs's to leave at the beginning of + * Npadlong is the number of ulongs's to leave at the beginning of * each allocated buffer for our own bookkeeping. We return to the callers * a pointer that points immediately after our bookkeeping area. Incoming pointers * must be decremented by that much, and outgoing pointers incremented. @@ -269,7 +269,7 @@ realloc(void *v, ulong size) setrealloctag(nv, getcallerpc(&v)); if(v == nil) setmalloctag(nv, getcallerpc(&v)); - } + } return nv; } |