diff options
author | 2001-08-30 12:42:41 +0000 | |
---|---|---|
committer | 2001-08-30 12:42:41 +0000 | |
commit | e7f7f66043831110db2a2ab57f9f942972cc9792 (patch) | |
tree | dea8fbabbb869724f4c35653b2a7cf318143ab40 /sys/kern/kern_malloc_debug.c | |
parent | typo in comment. (diff) | |
download | wireguard-openbsd-e7f7f66043831110db2a2ab57f9f942972cc9792.tar.xz wireguard-openbsd-e7f7f66043831110db2a2ab57f9f942972cc9792.zip |
typo in the comment.
Diffstat (limited to 'sys/kern/kern_malloc_debug.c')
-rw-r--r-- | sys/kern/kern_malloc_debug.c | 4 |
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. |