diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-02-21 14:16:50 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-02-21 14:16:50 +0000 |
commit | 4815a65e3e2af328a89ebfe892521fc1732e39a8 (patch) | |
tree | 291ffcb4d4489638733270f3b5d3e540c8440061 | |
parent | 5bea79e4dcff060643af554104d99715a8a63b77 (diff) |
anscestors -> ancestors
-rw-r--r-- | sys/kern/subr_witness.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_witness.c b/sys/kern/subr_witness.c index ad50f29e066..0483034d1b2 100644 --- a/sys/kern/subr_witness.c +++ b/sys/kern/subr_witness.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_witness.c,v 1.47 2021/03/23 10:22:20 mpi Exp $ */ +/* $OpenBSD: subr_witness.c,v 1.48 2022/02/21 14:16:49 jsg Exp $ */ /*- * Copyright (c) 2008 Isilon Systems, Inc. @@ -677,7 +677,7 @@ witness_ddb_display_list(int(*prnt)(const char *fmt, ...), if (!w->w_acquired || w->w_ddb_level > 0) continue; - /* This lock has no anscestors - display its descendants. */ + /* This lock has no ancestors - display its descendants. */ witness_ddb_display_descendants(prnt, w, 0); } } |