summaryrefslogtreecommitdiff
path: root/sys/lib/libsa
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2022-04-19 09:25:38 +0000
committerskrll <skrll@NetBSD.org>2022-04-19 09:25:38 +0000
commitb5b8badbe26064a49013d5fd71d0b9b99c8554ec (patch)
tree7a691bf00b304ae8e45394c0389ea0c66ce46750 /sys/lib/libsa
parenta6fe4e24ed8a82d57e164cf81125322b032e8a0d (diff)
Typo in comment. avoinds -> avoids
Diffstat (limited to 'sys/lib/libsa')
-rw-r--r--sys/lib/libsa/ext2fs.c4
-rw-r--r--sys/lib/libsa/minixfs3.c4
-rw-r--r--sys/lib/libsa/ufs.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/lib/libsa/ext2fs.c b/sys/lib/libsa/ext2fs.c
index 81c50dfa777..b810947fdaf 100644
--- a/sys/lib/libsa/ext2fs.c
+++ b/sys/lib/libsa/ext2fs.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ext2fs.c,v 1.29 2020/01/24 13:20:33 jakllsch Exp $ */
+/* $NetBSD: ext2fs.c,v 1.30 2022/04/19 09:25:38 skrll Exp $ */
/*
* Copyright (c) 1997 Manuel Bouyer.
@@ -544,7 +544,7 @@ ext2fs_open(const char *path, struct open_file *f)
/*
* We note that the number of indirect blocks is always
* a power of 2. This lets us use shifts and masks instead
- * of divide and remainder and avoinds pulling in the
+ * of divide and remainder and avoids pulling in the
* 64bit division routine into the boot code.
*/
mult = EXT2_NINDIR(fs);
diff --git a/sys/lib/libsa/minixfs3.c b/sys/lib/libsa/minixfs3.c
index d63704365d6..e1622c2e623 100644
--- a/sys/lib/libsa/minixfs3.c
+++ b/sys/lib/libsa/minixfs3.c
@@ -1,4 +1,4 @@
-/* $NetBSD: minixfs3.c,v 1.8 2019/03/31 20:08:45 christos Exp $ */
+/* $NetBSD: minixfs3.c,v 1.9 2022/04/19 09:25:38 skrll Exp $ */
/*-
* Copyright (c) 2012
@@ -572,7 +572,7 @@ minixfs3_open(const char *path, struct open_file *f)
/*
* We note that the number of indirect blocks is always
* a power of 2. This lets us use shifts and masks instead
- * of divide and remainder and avoinds pulling in the
+ * of divide and remainder and avoids pulling in the
* 64bit division routine into the boot code.
*/
mult = MFS_NINDIR(fs);
diff --git a/sys/lib/libsa/ufs.c b/sys/lib/libsa/ufs.c
index de8af145cba..df0e5a7b475 100644
--- a/sys/lib/libsa/ufs.c
+++ b/sys/lib/libsa/ufs.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ufs.c,v 1.80 2021/05/27 06:54:44 mrg Exp $ */
+/* $NetBSD: ufs.c,v 1.81 2022/04/19 09:25:38 skrll Exp $ */
/*-
* Copyright (c) 1993
@@ -701,7 +701,7 @@ ufs_open(const char *path, struct open_file *f)
/*
* We note that the number of indirect blocks is always
* a power of 2. This lets us use shifts and masks instead
- * of divide and remainder and avoinds pulling in the
+ * of divide and remainder and avoids pulling in the
* 64bit division routine into the boot code.
*/
mult = UFS_NINDIR(fs);