diff options
author | anton <anton@cvs.openbsd.org> | 2020-09-26 11:58:18 +0000 |
---|---|---|
committer | anton <anton@cvs.openbsd.org> | 2020-09-26 11:58:18 +0000 |
commit | ff7a7ddbac8962514707260496354c7250a4cece (patch) | |
tree | cd6c40c0b8f12b7de1902af760c3f93ae64006da /sys/dev/kcov.c | |
parent | 4ae1d5096702a9a45866a1f181ce53a075328cf1 (diff) |
Fix typo in comment.
Diffstat (limited to 'sys/dev/kcov.c')
-rw-r--r-- | sys/dev/kcov.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/kcov.c b/sys/dev/kcov.c index 7ff36d29464..894c2a8a2cb 100644 --- a/sys/dev/kcov.c +++ b/sys/dev/kcov.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kcov.c,v 1.29 2020/09/25 09:43:01 anton Exp $ */ +/* $OpenBSD: kcov.c,v 1.30 2020/09/26 11:58:17 anton Exp $ */ /* * Copyright (c) 2018 Anton Lindqvist <anton@openbsd.org> @@ -714,7 +714,7 @@ kr_free(struct kcov_remote *kr) kr->kr_kd->kd_kr = NULL; kr->kr_kd = NULL; TAILQ_REMOVE(&kr_list, kr, kr_entry); - /* Notify thread(s) wating in kcov_remote_register(). */ + /* Notify thread(s) waiting in kcov_remote_register(). */ wakeup(kr); pool_put(&kr_pool, kr); } |