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/profile.c | |
parent | d094b7faa1151c60d829a3988bae819f76be75d3 (diff) |
libc: trailing whitespace cleanup
Diffstat (limited to 'sys/src/libc/port/profile.c')
-rw-r--r-- | sys/src/libc/port/profile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/src/libc/port/profile.c b/sys/src/libc/port/profile.c index b1eb0afaa..8a8cd41b3 100644 --- a/sys/src/libc/port/profile.c +++ b/sys/src/libc/port/profile.c @@ -73,7 +73,7 @@ out: /* Add kernel cycles on proc entry */ p->time = p->time + _tos->kcycles; /* fall through */ - case Proftime: + case Proftime: proftime: /* Subtract cycle counter on proc entry */ cycles((uvlong*)&t); p->time = p->time - t; @@ -104,7 +104,7 @@ _profout(void) case Profuser: /* Subtract kernel cycles on proc entry */ p->time = p->time - _tos->kcycles; /* fall through */ - case Proftime: + case Proftime: proftime: /* Add cycle counter on proc entry */ cycles((uvlong*)&t); p->time = p->time + t; |