summaryrefslogtreecommitdiff
path: root/sys/msdosfs
diff options
context:
space:
mode:
authorTom Cosgrove <tom@cvs.openbsd.org>2005-03-14 22:31:53 +0000
committerTom Cosgrove <tom@cvs.openbsd.org>2005-03-14 22:31:53 +0000
commit43a64ca45b364330cf38fdb2b83ccc9167fe994c (patch)
tree6909cb8be88c1558f462156cca97b569cb8b52f4 /sys/msdosfs
parent4ab391e94c5007c0c63290d3a250a766860cfcb1 (diff)
Fix typo in comment
Diffstat (limited to 'sys/msdosfs')
-rw-r--r--sys/msdosfs/msdosfs_vnops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/msdosfs/msdosfs_vnops.c b/sys/msdosfs/msdosfs_vnops.c
index cfb3720d189..06378a14060 100644
--- a/sys/msdosfs/msdosfs_vnops.c
+++ b/sys/msdosfs/msdosfs_vnops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: msdosfs_vnops.c,v 1.52 2005/03/02 00:44:12 tom Exp $ */
+/* $OpenBSD: msdosfs_vnops.c,v 1.53 2005/03/14 22:31:52 tom Exp $ */
/* $NetBSD: msdosfs_vnops.c,v 1.63 1997/10/17 11:24:19 ws Exp $ */
/*-
@@ -1951,7 +1951,7 @@ fileidhash(uint64_t fileid)
/*
* We now have the original fileid value, as 64-bit value.
- * We need to reduce it to 32-bits, with the toe bit set.
+ * We need to reduce it to 32-bits, with the top bit set.
*/
fileid ^= ((c1 ^ fileid) >> 32);
fileid *= c1;