diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-04-13 23:44:12 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-04-13 23:44:12 +0000 |
commit | f8b9cae814771de46eb66cc93da3952fd57f6941 (patch) | |
tree | 7e85700c0d56cb96bb228a8f3a772fc366f1d7d5 /sys/dev/acpi/acpivout.c | |
parent | d5099c55a37a6e9ed2c726cebdf85453b3a0448e (diff) |
correct indentation
no functional change, found by smatch warnings
ok miod@ bluhm@
Diffstat (limited to 'sys/dev/acpi/acpivout.c')
-rw-r--r-- | sys/dev/acpi/acpivout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpivout.c b/sys/dev/acpi/acpivout.c index db383b4500a..53b5816c978 100644 --- a/sys/dev/acpi/acpivout.c +++ b/sys/dev/acpi/acpivout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpivout.c,v 1.25 2022/04/06 18:59:27 naddy Exp $ */ +/* $OpenBSD: acpivout.c,v 1.26 2024/04/13 23:44:11 jsg Exp $ */ /* * Copyright (c) 2009 Paul Irofti <paul@irofti.net> * @@ -259,7 +259,7 @@ acpivout_get_bcl(struct acpivout_softc *sc) value = aml_val2int(res.v_package[i + 2]); for (j = i; j > 0 && sc->sc_bcl[j - 1] > value; j--) sc->sc_bcl[j] = sc->sc_bcl[j - 1]; - sc->sc_bcl[j] = value; + sc->sc_bcl[j] = value; } err: |