Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Feb 2026 18:51:38 +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: 1459b69f0482 - stable/15 - asmc: unbreak build: add missing curly brace
Message-ID:  <699b503a.4172e.13dde15d@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=1459b69f0482df6bec0fbbb1b84f3f8e0f1875d9

commit 1459b69f0482df6bec0fbbb1b84f3f8e0f1875d9
Author:     Enji Cooper <ngie@FreeBSD.org>
AuthorDate: 2026-02-08 23:51:51 +0000
Commit:     Enji Cooper <ngie@FreeBSD.org>
CommitDate: 2026-02-22 18:51:33 +0000

    asmc: unbreak build: add missing curly brace
    
    Fixes:  d76bb14e022 ("chore: asmc: additional style(9) cleanup")
    (cherry picked from commit 9ccdf3f36e014f0060ea192ffed91a7679003355)
---
 sys/dev/asmc/asmc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/asmc/asmc.c b/sys/dev/asmc/asmc.c
index f2c42ba814e2..b6b98b1c8953 100644
--- a/sys/dev/asmc/asmc.c
+++ b/sys/dev/asmc/asmc.c
@@ -1133,7 +1133,7 @@ out:
 		device_printf(dev, "%s for key %s failed %d times, giving up\n",
 		    __func__, key, try);
 		mtx_unlock_spin(&sc->sc_mtx);
-	else {
+	} else {
 		char buf[1024];
 		char buf2[8];
 		mtx_unlock_spin(&sc->sc_mtx);


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?699b503a.4172e.13dde15d>