aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2023-07-04 22:23:57 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2023-07-04 23:11:37 +0000
commit658e7620672f8eb650695992b4a73e004c5f101b (patch)
tree02a3f0ec4a13e82d0e296d05b1102df96631f317
parent8e7046ff29a09852584b87f5237c230283023e11 (diff)
downloadsrc-658e7620672f8eb650695992b4a73e004c5f101b.tar.gz
src-658e7620672f8eb650695992b4a73e004c5f101b.zip
kern_lockf.c: fix typo
Sponsored by: The FreeBSD Foundation MFC after: 3 days
-rw-r--r--sys/kern/kern_lockf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_lockf.c b/sys/kern/kern_lockf.c
index 171a0a861c6d..f551972ed33e 100644
--- a/sys/kern/kern_lockf.c
+++ b/sys/kern/kern_lockf.c
@@ -195,7 +195,7 @@ static void lf_print_owner(struct lock_owner *);
struct lock_owner {
LIST_ENTRY(lock_owner) lo_link; /* (l) hash chain */
int lo_refs; /* (l) Number of locks referring to this */
- int lo_flags; /* (c) Flags passwd to lf_advlock */
+ int lo_flags; /* (c) Flags passed to lf_advlock */
caddr_t lo_id; /* (c) Id value passed to lf_advlock */
pid_t lo_pid; /* (c) Process Id of the lock owner */
int lo_sysid; /* (c) System Id of the lock owner */