diff options
author | 2009-06-04 17:25:51 +0000 | |
---|---|---|
committer | 2009-06-04 17:25:51 +0000 | |
commit | 8c8a872989e007a8f6a405650c82e5e87fe58f9a (patch) | |
tree | db7c166b62031cc0f3851498fcdf640c46cf83f9 | |
parent | Add myself to the copyright, suggested by marco@. (diff) | |
download | wireguard-openbsd-8c8a872989e007a8f6a405650c82e5e87fe58f9a.tar.xz wireguard-openbsd-8c8a872989e007a8f6a405650c82e5e87fe58f9a.zip |
Even more KNF.
-rw-r--r-- | sys/dev/acpi/acpivout.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpi/acpivout.c b/sys/dev/acpi/acpivout.c index 491745fa78c..9804c79bd04 100644 --- a/sys/dev/acpi/acpivout.c +++ b/sys/dev/acpi/acpivout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpivout.c,v 1.3 2009/06/04 17:02:36 miod Exp $ */ +/* $OpenBSD: acpivout.c,v 1.4 2009/06/04 17:25:51 pirofti Exp $ */ /* * Copyright (c) 2009 Paul Irofti <pirofti@openbsd.org> * @@ -327,7 +327,7 @@ acpivout_get_param(struct wsdisplay_param *dp) continue; sc = (struct acpivout_softc *)acpivout_cd.cd_devs[i]; /* Ignore device if not connected. */ - if (sc->sc_bcl_len != 0) + if (sc->sc_bcl_len != 0) break; } if (sc != NULL && sc->sc_bcl_len != 0) { @@ -356,7 +356,7 @@ acpivout_set_param(struct wsdisplay_param *dp) continue; sc = (struct acpivout_softc *)acpivout_cd.cd_devs[i]; /* Ignore device if not connected. */ - if (sc->sc_bcl_len != 0) + if (sc->sc_bcl_len != 0) break; } if (sc != NULL && sc->sc_bcl_len != 0) { |