diff options
author | 1997-02-24 04:05:48 +0000 | |
---|---|---|
committer | 1997-02-24 04:05:48 +0000 | |
commit | 33fff70d8d1e6671276916778fcb266710ce22cc (patch) | |
tree | fd170a498cf0414e09d19b061deadc30d7b04706 /sys | |
parent | sync with hp300: -nostdinc, HOSTCC, etc. (diff) | |
download | wireguard-openbsd-33fff70d8d1e6671276916778fcb266710ce22cc.tar.xz wireguard-openbsd-33fff70d8d1e6671276916778fcb266710ce22cc.zip |
Kill the annoying printf (which I think I added).
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 5564f0c4953..8522f4004f8 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.41 1997/02/03 15:04:50 deraadt Exp $ */ +/* $OpenBSD: machdep.c,v 1.42 1997/02/24 04:05:48 downsj Exp $ */ /* $NetBSD: machdep.c,v 1.202 1996/05/18 15:54:59 christos Exp $ */ /*- @@ -1255,9 +1255,8 @@ init386(first_avail) biosextmem = extmem; /* Extended memory as reported by BIOS call */ #endif -#ifdef EXTMEM_SIZE /* Override memory size */ - if (biosextmem != EXTMEM_SIZE) - printf("Note: Overriding BIOS memsize of %d.\n", biosextmem); +#ifdef EXTMEM_SIZE + /* Override memory size */ biosextmem = EXTMEM_SIZE; #endif |