git: 96246330c1c4 - main - msdosfs(4): Fix two typos in source code comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 19 Apr 2026 08:12:19 UTC
The branch main has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=96246330c1c47ea06b7e781ddd87de45d541494f
commit 96246330c1c47ea06b7e781ddd87de45d541494f
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2026-04-19 08:06:45 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-04-19 08:12:02 +0000
msdosfs(4): Fix two typos in source code comments
- s/unititialized/uninitialized/
MFC after: 3 days
---
sys/fs/msdosfs/msdosfs_fat.c | 4 ++--
1 file 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);