summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-04-06 14:37:51 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-04-06 14:37:51 +0000
commit37216eb1389b8319aa7ffa5a04d57de1cf9dfb89 (patch)
treee8e17407465c80446303a11763d28ca990b7d6eb /sys
parent2fa683b3f03c3d5ad55568a936061fb7fda94d70 (diff)
Typo in comment (henric@aimnet.com)
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/kern_malloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_malloc.c b/sys/kern/kern_malloc.c
index 6c2c7f3c046..baa922fea98 100644
--- a/sys/kern/kern_malloc.c
+++ b/sys/kern/kern_malloc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_malloc.c,v 1.24 2001/02/21 23:24:29 csapuntz Exp $ */
+/* $OpenBSD: kern_malloc.c,v 1.25 2001/04/06 14:37:50 angelos Exp $ */
/* $NetBSD: kern_malloc.c,v 1.15.4.2 1996/06/13 17:10:56 cgd Exp $ */
/*
@@ -92,7 +92,7 @@ long addrmask[] = { 0,
* Normally the freelist structure is used only to hold the list pointer
* for free objects. However, when running with diagnostics, the first
* 8 bytes of the structure is unused except for diagnostic information,
- * and the free list pointer is at offst 8 in the structure. Since the
+ * and the free list pointer is at offset 8 in the structure. Since the
* first 8 bytes is the portion of the structure most often modified, this
* helps to detect memory reuse problems and avoid free list corruption.
*/