diff options
author | Tom Cosgrove <tom@cvs.openbsd.org> | 2005-03-13 22:21:27 +0000 |
---|---|---|
committer | Tom Cosgrove <tom@cvs.openbsd.org> | 2005-03-13 22:21:27 +0000 |
commit | 516ad576f90ca49285b52fa6fb822a4f917e3adc (patch) | |
tree | 280748681bd4dfbde87b7ff7ff2593f605bc4b90 /sys/arch/amd64 | |
parent | 9010bfbe7f5b924e65ba626939d0888f4634c19f (diff) |
KNF
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/stand/libsa/pxe.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/arch/amd64/stand/libsa/pxe.c b/sys/arch/amd64/stand/libsa/pxe.c index 205428662f4..ef94619e2ad 100644 --- a/sys/arch/amd64/stand/libsa/pxe.c +++ b/sys/arch/amd64/stand/libsa/pxe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pxe.c,v 1.1 2004/03/21 21:37:41 tom Exp $ */ +/* $OpenBSD: pxe.c,v 1.2 2005/03/13 22:21:26 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); |