summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorMike Pechkin <mpech@cvs.openbsd.org>2001-08-30 12:42:42 +0000
committerMike Pechkin <mpech@cvs.openbsd.org>2001-08-30 12:42:42 +0000
commit06c5336e070d3ea87fba875c413e925c2935fa06 (patch)
treec6a9020f4f7f6cd6d6b38da29abeccd84531c5df /sys/kern
parent92d93d6dd4954d7b4ea4cb4530b6e043d4203ab7 (diff)
typo in the comment.
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/kern_malloc_debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_malloc_debug.c b/sys/kern/kern_malloc_debug.c
index d23bc37490a..42e862467e1 100644
--- a/sys/kern/kern_malloc_debug.c
+++ b/sys/kern/kern_malloc_debug.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_malloc_debug.c,v 1.11 2001/08/17 23:39:59 art Exp $ */
+/* $OpenBSD: kern_malloc_debug.c,v 1.12 2001/08/30 12:42:41 mpech Exp $ */
/*
* Copyright (c) 1999, 2000 Artur Grabowski <art@openbsd.org>
@@ -39,7 +39,7 @@
* more types will also add to the complexity of the code.
*
* This is really simple. Every malloc() allocates two virtual pages,
- * the second page is left unmapped, and the the value returned is aligned
+ * the second page is left unmapped, and the value returned is aligned
* so that it ends at (or very close to) the page boundary to catch overflows.
* Every free() changes the protection of the first page to VM_PROT_NONE so
* that we can catch any dangling writes to it.