git: 6062ccb1fb7f - stable/13 - ffs(3): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 28 Aug 2025 09:17:31 UTC
The branch stable/13 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=6062ccb1fb7fd4b5de6ab43846ce16738612960a commit 6062ccb1fb7fd4b5de6ab43846ce16738612960a Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2025-08-25 08:37:27 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2025-08-28 09:15:01 +0000 ffs(3): Fix a typo in a source code comment - s/fist/first/ (cherry picked from commit cc5623d8bda6ac24faf1c18ba9712e7f78dc127b) --- sys/ufs/ffs/ffs_rawread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ufs/ffs/ffs_rawread.c b/sys/ufs/ffs/ffs_rawread.c index 3a415d766303..b5007b99b537 100644 --- a/sys/ufs/ffs/ffs_rawread.c +++ b/sys/ufs/ffs/ffs_rawread.c @@ -286,7 +286,7 @@ ffs_rawread_main(struct vnode *vp, if (error != 0) break; - if (resid > bp->b_bufsize) { /* Setup fist readahead */ + if (resid > bp->b_bufsize) { /* Setup first readahead */ if (rawreadahead != 0) nbp = uma_zalloc(ffsraw_pbuf_zone, M_NOWAIT);