git: 8b5c5cae92d5 - main - vmm(4): Fix a typo in a kernel message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 21 Apr 2024 07:44:45 UTC
The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=8b5c5cae92d5b44f03636540a787fd6e994ce816 commit 8b5c5cae92d5b44f03636540a787fd6e994ce816 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2024-04-21 07:44:18 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2024-04-21 07:44:18 +0000 vmm(4): Fix a typo in a kernel message - s/cant/can't/ MFC after: 1 week --- sys/amd64/vmm/amd/ivrs_drv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/amd64/vmm/amd/ivrs_drv.c b/sys/amd64/vmm/amd/ivrs_drv.c index 7dd68d8aea95..34aebc62fed4 100644 --- a/sys/amd64/vmm/amd/ivrs_drv.c +++ b/sys/amd64/vmm/amd/ivrs_drv.c @@ -416,7 +416,7 @@ ivhd_identify(driver_t *driver, device_t parent) if (ivhd_devs[i] == NULL) { ivhd_devs[i] = device_find_child(parent, "ivhd", i); if (ivhd_devs[i] == NULL) { - printf("AMD-Vi: cant find ivhd%d\n", i); + printf("AMD-Vi: can't find ivhd%d\n", i); break; } }