From 33fff70d8d1e6671276916778fcb266710ce22cc Mon Sep 17 00:00:00 2001 From: downsj Date: Mon, 24 Feb 1997 04:05:48 +0000 Subject: [PATCH] Kill the annoying printf (which I think I added). --- sys/arch/i386/i386/machdep.c | 7 +++---- 1 file 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 -- 2.20.1