diff options
| author | Enji Cooper <ngie@FreeBSD.org> | 2026-02-05 04:38:31 +0000 |
|---|---|---|
| committer | Enji Cooper <ngie@FreeBSD.org> | 2026-02-05 04:40:24 +0000 |
| commit | cc702c78f70f972cf2f8ea008752d96df1989988 (patch) | |
| tree | 7c87c8d6e224d50566e3b869147dbcde7d5df357 | |
| parent | abf911af22729858cc876231e7970eff6aefbb9d (diff) | |
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")
| -rw-r--r-- | sys/dev/acpica/acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c index ac02e1a349d3..bb7c93bcc256 100644 --- a/sys/dev/acpica/acpi.c +++ b/sys/dev/acpica/acpi.c @@ -4963,7 +4963,7 @@ acpi_reset_interfaces(device_t dev) } else { device_printf(dev, "could not install " - "Darwin OSI: %s\n" + "Darwin OSI: %s\n", AcpiFormatException(status)); } } |
