The branch stable/15 has been updated by ngie: URL: https://cgit.FreeBSD.org/src/commit/?id=1459b69f0482df6bec0fbbb1b84f3f8e0f1875d9
commit 1459b69f0482df6bec0fbbb1b84f3f8e0f1875d9 Author: Enji Cooper <[email protected]> AuthorDate: 2026-02-08 23:51:51 +0000 Commit: Enji Cooper <[email protected]> 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);
