diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-29 15:38:59 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2025-11-08 18:58:16 +0000 |
| commit | 720108d86d872b224fa7e8bba5d3b6a57dee0c05 (patch) | |
| tree | 88cf857adf382943f3b99464d23cf6c93fe11af6 | |
| parent | 163ff684af2ea70c689da2371b1232a04d266f4e (diff) | |
mfi(4): Fix a typo in a KASSERT message
- s/dissappeared/disappeared/
(cherry picked from commit a25172844edaaa7e18c1dcecb6df8b8832456334)
| -rw-r--r-- | sys/dev/mfi/mfi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mfi/mfi.c b/sys/dev/mfi/mfi.c index 13e5dfc84fd1..a7d98f06aea3 100644 --- a/sys/dev/mfi/mfi.c +++ b/sys/dev/mfi/mfi.c @@ -2829,7 +2829,7 @@ mfi_check_command_post(struct mfi_softc *sc, struct mfi_command *cm) if (ld->ld_id == cm->cm_frame->dcmd.mbox[0]) break; } - KASSERT(ld != NULL, ("volume dissappeared")); + KASSERT(ld != NULL, ("volume disappeared")); if (cm->cm_frame->header.cmd_status == MFI_STAT_OK) { mtx_unlock(&sc->mfi_io_lock); bus_topo_lock(); |
