Typo out->in.

Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
This commit is contained in:
Konstantin Belousov 2019-10-10 18:52:24 +00:00
parent a1ff92a580
commit 302abfb279
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=353413

View File

@ -81,7 +81,7 @@ struct lockf_entry {
struct task *lf_async_task;/* (c) Async lock callback */
LIST_ENTRY(lockf_entry) lf_link; /* (s) Linkage for lock lists */
struct lockf_edge_list lf_outedges; /* (s) list of out-edges */
struct lockf_edge_list lf_inedges; /* (s) list of out-edges */
struct lockf_edge_list lf_inedges; /* (s) list of in-edges */
int lf_refs; /* (s) ref count */
};
LIST_HEAD(lockf_entry_list, lockf_entry);