summaryrefslogtreecommitdiff
path: root/sys/src/libc/port/profile.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/src/libc/port/profile.c')
-rw-r--r--sys/src/libc/port/profile.c4
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;