git: ca4ceadbe542 - main - minidump_machdep: Fix typo

From: Warner Losh <imp_at_FreeBSD.org>
Date: Thu, 11 Apr 2024 17:34:44 UTC
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=ca4ceadbe542ac35a0dd73d71b185f8384d5e036

commit ca4ceadbe542ac35a0dd73d71b185f8384d5e036
Author:     Elyes Haouas <ehaouas@noos.fr>
AuthorDate: 2024-04-11 17:27:29 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-04-11 17:28:21 +0000

    minidump_machdep: Fix typo
    
    Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
    Reviewed by: imp
    Pull Request: https://github.com/freebsd/freebsd-src/pull/885
---
 sys/amd64/amd64/minidump_machdep.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/amd64/amd64/minidump_machdep.c b/sys/amd64/amd64/minidump_machdep.c
index 8960d743593c..6d0917e16099 100644
--- a/sys/amd64/amd64/minidump_machdep.c
+++ b/sys/amd64/amd64/minidump_machdep.c
@@ -97,7 +97,7 @@ blk_write(struct dumperinfo *di, char *ptr, vm_paddr_t pa, size_t sz)
 		return (EINVAL);
 	}
 	if (ptr != NULL && pa != 0) {
-		printf("cant have both va and pa!\n");
+		printf("can't have both va and pa!\n");
 		return (EINVAL);
 	}
 	if ((((uintptr_t)pa) % PAGE_SIZE) != 0) {