summaryrefslogtreecommitdiffstats
path: root/sys/dev/kcov.c
diff options
context:
space:
mode:
authoranton <anton@openbsd.org>2020-09-26 11:58:17 +0000
committeranton <anton@openbsd.org>2020-09-26 11:58:17 +0000
commit925b91961ea5f20e1f8a90990bccf10763f7fb0a (patch)
treef31bc64bf105141772fca455dbe751afb612ce68 /sys/dev/kcov.c
parentHave dtls1_new() call dtls1_free() on failure. (diff)
downloadwireguard-openbsd-925b91961ea5f20e1f8a90990bccf10763f7fb0a.tar.xz
wireguard-openbsd-925b91961ea5f20e1f8a90990bccf10763f7fb0a.zip
Fix typo in comment.
Diffstat (limited to 'sys/dev/kcov.c')
-rw-r--r--sys/dev/kcov.c4
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);
}