Date: Wed, 22 Apr 2026 09:22:21 +0000 From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 5cb5254e5c54 - stable/15 - msdosfs(4): Fix two typos in source code comments Message-ID: <69e8934d.35bf4.3fdf1705@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch stable/15 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=5cb5254e5c54af0c85fd1a854e4b0f69d85b61a2 commit 5cb5254e5c54af0c85fd1a854e4b0f69d85b61a2 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2026-04-19 08:06:45 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2026-04-22 09:21:43 +0000 msdosfs(4): Fix two typos in source code comments - s/unititialized/uninitialized/ (cherry picked from commit 96246330c1c47ea06b7e781ddd87de45d541494f) --- 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);home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69e8934d.35bf4.3fdf1705>
