git: b50ddfd6ea7a - stable/13 - acpidump(8) Fix typo in error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 21 Oct 2024 03:51:47 UTC
The branch stable/13 has been updated by lwhsu:
URL: https://cgit.FreeBSD.org/src/commit/?id=b50ddfd6ea7a2348b3e2e8bac77b3c89b7081a34
commit b50ddfd6ea7a2348b3e2e8bac77b3c89b7081a34
Author: SHENG-YI HONG <aokblast@FreeBSD.org>
AuthorDate: 2024-04-02 17:24:46 +0000
Commit: Li-Wen Hsu <lwhsu@FreeBSD.org>
CommitDate: 2024-10-21 03:51:23 +0000
acpidump(8) Fix typo in error message
acpidump(8) uses iasl(8) to parse acpi information.
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D44596
(cherry picked from commit 861f5b95b39fd8a6b10b7bddf29e284e5ba2c49a)
---
usr.sbin/acpi/acpidump/acpi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usr.sbin/acpi/acpidump/acpi.c b/usr.sbin/acpi/acpidump/acpi.c
index 5005c4bbe630..477edd892483 100644
--- a/usr.sbin/acpi/acpidump/acpi.c
+++ b/usr.sbin/acpi/acpidump/acpi.c
@@ -2233,7 +2233,7 @@ aml_disassemble(ACPI_TABLE_HEADER *rsdt, ACPI_TABLE_HEADER *dsdp)
goto out;
}
if (status != 0) {
- fprintf(stderr, "iast exit status = %d\n", status);
+ fprintf(stderr, "iasl exit status = %d\n", status);
}
/* Dump iasl's output to stdout */