diff options
author | 2001-07-15 10:54:44 +0000 | |
---|---|---|
committer | 2001-07-15 10:54:44 +0000 | |
commit | 255fc8060af42297a3c0697d704bcd1a4c98314e (patch) | |
tree | 64ab67e446e26eb693cd25264d7d89b8dd7c3384 | |
parent | Comment clarification and indent; ok mickey@ (diff) | |
download | wireguard-openbsd-255fc8060af42297a3c0697d704bcd1a4c98314e.tar.xz wireguard-openbsd-255fc8060af42297a3c0697d704bcd1a4c98314e.zip |
Some more KNF
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index dd27775341a..e2d4e1725e3 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.168 2001/07/15 10:48:30 niklas Exp $ */ +/* $OpenBSD: machdep.c,v 1.169 2001/07/15 10:54:44 niklas Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -2103,7 +2103,7 @@ init386(first_avail) /* Boot arguments are in a single page specified by /boot */ if (bootapiver & BAPIV_VECTOR) { if (bootargc > NBPG) - panic ("too many boot args"); + panic("too many boot args"); if (extent_alloc_region(iomem_ex, (paddr_t)bootargv, bootargc, EX_NOWAIT)) @@ -2148,7 +2148,7 @@ init386(first_avail) /* skip shorter than page regions */ if ((e - a) < NBPG) { #ifdef DEBUG - printf ("-S"); + printf("-S"); #endif continue; } @@ -2202,20 +2202,20 @@ init386(first_avail) if (a < atop(16 * 1024 * 1024)) { lim = MIN(atop(16 * 1024 * 1024), e); #ifdef DEBUG - printf (" %x-%x (<16M)", a, lim); + printf(" %x-%x (<16M)", a, lim); #endif uvm_page_physload(a, lim, a, lim, VM_FREELIST_FIRST16); if (e > lim) { #ifdef DEBUG - printf (" %x-%x", lim, e); + printf(" %x-%x", lim, e); #endif uvm_page_physload(lim, e, lim, e, VM_FREELIST_DEFAULT); } } else { #ifdef DEBUG - printf (" %x-%x", a, e); + printf(" %x-%x", a, e); #endif uvm_page_physload(a, e, a, e, VM_FREELIST_DEFAULT); |