diff options
author | Tom Cosgrove <tom@cvs.openbsd.org> | 2005-03-12 21:53:50 +0000 |
---|---|---|
committer | Tom Cosgrove <tom@cvs.openbsd.org> | 2005-03-12 21:53:50 +0000 |
commit | 3ce77cfa27e699103a5b3f0c086b5beb652d253a (patch) | |
tree | aa0ad5f0ddaa81b1b2911dec81f980e1eb4e441e /sys/arch/i386/stand | |
parent | ebf3c727135ee7d9c4b1926717308718cbf1622a (diff) |
KNF
Diffstat (limited to 'sys/arch/i386/stand')
-rw-r--r-- | sys/arch/i386/stand/libsa/pxe.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/arch/i386/stand/libsa/pxe.c b/sys/arch/i386/stand/libsa/pxe.c index b159b51f5dc..9a193416ef5 100644 --- a/sys/arch/i386/stand/libsa/pxe.c +++ b/sys/arch/i386/stand/libsa/pxe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pxe.c,v 1.1 2004/03/19 13:48:18 tom Exp $ */ +/* $OpenBSD: pxe.c,v 1.2 2005/03/12 21:53:49 tom Exp $ */ /* $NetBSD: pxe.c,v 1.5 2003/03/11 18:29:00 drochner Exp $ */ /* @@ -375,8 +375,7 @@ pxe_init(int quiet) /* assert(pxe != NULL); */ printf(quiet ? " pxe!" : "PXE present\n"); - } - else { /* pxenv != NULL */ + } else { /* pxenv != NULL */ int bang = 0; if (pxenv->Version >= 0x0201 && pxe != NULL) { @@ -389,8 +388,7 @@ pxe_init(int quiet) (bang ? '!' : '+'), (pxenv->Version >> 8) & 0xff, pxenv->Version & 0xff); - } - else { + } else { printf("PXE BIOS Version %d.%d\n", (pxenv->Version >> 8) & 0xff, pxenv->Version & 0xff); |