Date: Thu, 11 Apr 2024 17:34:44 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: ca4ceadbe542 - main - minidump_machdep: Fix typo Message-ID: <202404111734.43BHYiqw069867@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202404111734.43BHYiqw069867>