git: 883dd0a0853c - stable/14 - acpidump(8) Fix typo in error message

From: Li-Wen Hsu <lwhsu_at_FreeBSD.org>
Date: Mon, 21 Oct 2024 03:52:07 UTC
The branch stable/14 has been updated by lwhsu:

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

commit 883dd0a0853c5dbc86bf1f319d387e089954a0eb
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:57 +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 7b2e0c5e4d12..af0068649fbb 100644
--- a/usr.sbin/acpi/acpidump/acpi.c
+++ b/usr.sbin/acpi/acpidump/acpi.c
@@ -2619,7 +2619,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 */