diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-29 08:26:23 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-29 08:26:23 +0000 |
| commit | 08a6620093dc2786051bf6ae6f40ae048027021b (patch) | |
| tree | 42a590760b7d3f8121a918661834d1a6a475c40b | |
| parent | adfe14dcc2747a20dff961044d6817c507087327 (diff) | |
nfsclient: Fix a typo in a panic message
- s/eroneous/erroneous/
MFC after: 1 week
| -rw-r--r-- | sys/fs/nfsclient/nfs_clrpcops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/nfsclient/nfs_clrpcops.c b/sys/fs/nfsclient/nfs_clrpcops.c index b88169ba69d5..b61218958550 100644 --- a/sys/fs/nfsclient/nfs_clrpcops.c +++ b/sys/fs/nfsclient/nfs_clrpcops.c @@ -9760,7 +9760,7 @@ nfsm_split(struct mbuf *mp, uint64_t xfer) pgno++; } while (pgno < m->m_epg_npgs); if (pgno == m->m_epg_npgs) - panic("nfsm_split: eroneous ext_pgs mbuf"); + panic("nfsm_split: erroneous ext_pgs mbuf"); m2 = mb_alloc_ext_pgs(M_WAITOK, mb_free_mext_pgs, 0); m2->m_epg_flags |= EPG_FLAG_ANON; |
