git: a38f44fc83d0 - stable/14 - Unbreak the build
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 22 Feb 2026 04:20:36 UTC
The branch stable/14 has been updated by ngie:
URL: https://cgit.FreeBSD.org/src/commit/?id=a38f44fc83d07baf03947ac32b8c57cc7790b3b4
commit a38f44fc83d07baf03947ac32b8c57cc7790b3b4
Author: Enji Cooper <ngie@FreeBSD.org>
AuthorDate: 2026-02-05 04:38:31 +0000
Commit: Enji Cooper <ngie@FreeBSD.org>
CommitDate: 2026-02-22 04:19:49 +0000
Unbreak the build
Add the missing comma in the `device_printf` statement.
MFC after: 1 week
MFC with: 9c666de5b
Fixes: 9c666de5b ("Make message added for Darwin OSI quirk more terse")
(cherry picked from commit cc702c78f70f972cf2f8ea008752d96df1989988)
---
sys/dev/acpica/acpi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c
index b72e43bab893..e9c346e371d9 100644
--- a/sys/dev/acpica/acpi.c
+++ b/sys/dev/acpica/acpi.c
@@ -4681,7 +4681,7 @@ acpi_reset_interfaces(device_t dev)
} else {
device_printf(dev,
"could not install "
- "Darwin OSI: %s\n"
+ "Darwin OSI: %s\n",
AcpiFormatException(status));
}
}