diff options
author | 2001-07-18 13:50:40 +0000 | |
---|---|---|
committer | 2001-07-18 13:50:40 +0000 | |
commit | 614528f249dd0e639ca1cd7a6243231d27e06838 (patch) | |
tree | 4913619eec4756989d329f98d5d6edbc00bc69da /sys/kern/kern_malloc_debug.c | |
parent | Fix prototype that art missed... (diff) | |
download | wireguard-openbsd-614528f249dd0e639ca1cd7a6243231d27e06838.tar.xz wireguard-openbsd-614528f249dd0e639ca1cd7a6243231d27e06838.zip |
Typo.
Noted by: Heikki Korpela <heko@iki.fi>
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 ffb3835f635..7043b150697 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.8 2001/07/18 10:47:05 art Exp $ */ +/* $OpenBSD: kern_malloc_debug.c,v 1.9 2001/07/18 13:50:40 art Exp $ */ /* * Copyright (c) 1999, 2000 Artur Grabowski <art@openbsd.org> @@ -38,7 +38,7 @@ * default malloc because we'll run out of memory really fast. Adding * more types will also add to the complexity of the code. * - * This is really is simple. Every malloc() allocates two virtual pages, + * This is really simple. Every malloc() allocates two virtual pages, * the second page is left unmapped, and the 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 |