Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Feb 2026 04:19:34 +0000
From:      Enji Cooper <ngie@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 9ecdc69d3005 - stable/15 - Unbreak the build
Message-ID:  <699a83d6.2509a.2d968e0e@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/15 has been updated by ngie:

URL: https://cgit.FreeBSD.org/src/commit/?id=9ecdc69d3005bcdb7fc4cadb95342083b105f844

commit 9ecdc69d3005bcdb7fc4cadb95342083b105f844
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:17:44 +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 6bd34d9e16db..4a6c805f9c6a 100644
--- a/sys/dev/acpica/acpi.c
+++ b/sys/dev/acpica/acpi.c
@@ -4674,7 +4674,7 @@ acpi_reset_interfaces(device_t dev)
 					} else {
 						device_printf(dev,
 						    "could not install "
-						    "Darwin OSI: %s\n"
+						    "Darwin OSI: %s\n",
 						    AcpiFormatException(status));
 					}
 				}


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?699a83d6.2509a.2d968e0e>