svn commit: r353413 - head/sys/sys

Konstantin Belousov kib at FreeBSD.org
Thu Oct 10 18:52:24 UTC 2019


Author: kib
Date: Thu Oct 10 18:52:24 2019
New Revision: 353413
URL: https://svnweb.freebsd.org/changeset/base/353413

Log:
  Typo out->in.
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	3 days

Modified:
  head/sys/sys/lockf.h

Modified: head/sys/sys/lockf.h
==============================================================================
--- head/sys/sys/lockf.h	Thu Oct 10 18:39:11 2019	(r353412)
+++ head/sys/sys/lockf.h	Thu Oct 10 18:52:24 2019	(r353413)
@@ -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);


More information about the svn-src-all mailing list