summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1997-11-09 22:14:06 +0000
committermillert <millert@openbsd.org>1997-11-09 22:14:06 +0000
commit233d94f01bcbf1300667b798446e5e000e24b251 (patch)
tree277d16d7ff75f4117e51dc9cb08199e5f58c455e
parentstruct vmtotal contains unsigned vars. (diff)
downloadwireguard-openbsd-233d94f01bcbf1300667b798446e5e000e24b251.tar.xz
wireguard-openbsd-233d94f01bcbf1300667b798446e5e000e24b251.zip
typo
-rw-r--r--sys/ufs/ufs/inode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ufs/inode.h b/sys/ufs/ufs/inode.h
index 96744270f66..c5cf93b5dfe 100644
--- a/sys/ufs/ufs/inode.h
+++ b/sys/ufs/ufs/inode.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: inode.h,v 1.9 1997/11/06 05:59:25 csapuntz Exp $ */
+/* $OpenBSD: inode.h,v 1.10 1997/11/09 22:14:06 millert Exp $ */
/* $NetBSD: inode.h,v 1.8 1995/06/15 23:22:50 cgd Exp $ */
/*
@@ -185,7 +185,7 @@ struct inode {
#define IN_UPDATE 0x0004 /* Modification time update request */
#define IN_MODIFIED 0x0008 /* Inode has been modified. */
#define IN_RENAME 0x0010 /* Inode is being renamed. */
-#define IN_SHLOCK 0x0020 /* FIle has shared lock. */
+#define IN_SHLOCK 0x0020 /* File has shared lock. */
#define IN_EXLOCK 0x0040 /* File has exclusive lock. */
#ifdef _KERNEL