aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2026-04-19 08:06:45 +0000
committerGordon Bergling <gbe@FreeBSD.org>2026-04-19 08:12:02 +0000
commit96246330c1c47ea06b7e781ddd87de45d541494f (patch)
tree8342ce909b75a5f1cebecbd5d4d2025e8fdfcd56
parent33e0180a306b9ed60df5eae1818c40ef65750525 (diff)
msdosfs(4): Fix two typos in source code comments
- s/unititialized/uninitialized/ MFC after: 3 days
-rw-r--r--sys/fs/msdosfs/msdosfs_fat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/msdosfs/msdosfs_fat.c b/sys/fs/msdosfs/msdosfs_fat.c
index bfaff417f677..ef8496d21a48 100644
--- a/sys/fs/msdosfs/msdosfs_fat.c
+++ b/sys/fs/msdosfs/msdosfs_fat.c
@@ -134,7 +134,7 @@ pcbmap(struct denode *dep, u_long findcn, daddr_t *bnp, u_long *cnp, int *sp)
int error;
u_long i;
u_long cn;
- u_long prevcn = 0; /* XXX: prevcn could be used unititialized */
+ u_long prevcn = 0; /* XXX: prevcn could be used uninitialized */
u_long byteoffset;
u_long bn;
u_long bo;
@@ -761,7 +761,7 @@ clusteralloc1(struct msdosfsmount *pmp, u_long start, u_long count,
{
u_long idx;
u_long len, newst, foundl, cn, l;
- u_long foundcn = 0; /* XXX: foundcn could be used unititialized */
+ u_long foundcn = 0; /* XXX: foundcn could be used uninitialized */
u_int map;
MSDOSFS_ASSERT_MP_LOCKED(pmp);