summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1998-06-08 18:56:46 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1998-06-08 18:56:46 +0000
commitf54ed5ded7653d754ec4d09372dc18d7fd536158 (patch)
tree12e5a04e226a22f0999674856c603a3a50460ae4 /sys
parent89213ae97caa94079ae4d4211b76ebd7445e9ed6 (diff)
typos
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/i386/stand/libsa/memprobe.c6
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);