diff options
-rw-r--r-- | sys/arch/i386/stand/libsa/memprobe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/stand/libsa/memprobe.c b/sys/arch/i386/stand/libsa/memprobe.c index 3927bd83f96..b6a85e79063 100644 --- a/sys/arch/i386/stand/libsa/memprobe.c +++ b/sys/arch/i386/stand/libsa/memprobe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: memprobe.c,v 1.27 1998/04/18 07:39:54 deraadt Exp $ */ +/* $OpenBSD: memprobe.c,v 1.28 1998/06/08 18:56:45 mickey Exp $ */ /* * Copyright (c) 1997 Tobias Weingartner, Michael Shalayeff @@ -247,7 +247,7 @@ addrprobe(kloc) * routine, we are getting pretty desparate. Hopefully nobody * has to rely on this after all the work above. * - * XXX - Does not detect aliases memory. + * XXX - Does not detect aliased memory. * XXX - Could be destructive, as it does write. */ static __inline bios_memmap_t * @@ -307,7 +307,7 @@ memprobe() /* XXX - Compatibility, remove later */ extmem = cnvmem = 0; for(im = bios_memmap; im->type != BIOS_MAP_END; im++) { - /* Count only "good" memory chunks 4K an up in size */ + /* Count only "good" memory chunks 4K and up in size */ if ((im->type == BIOS_MAP_FREE) && (im->size >= 4)) { printf(" %luK", (u_long)im->size); |