diff options
-rw-r--r-- | share/man/man9/malloc.9 | 4 | ||||
-rw-r--r-- | sys/sys/malloc.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man9/malloc.9 b/share/man/man9/malloc.9 index c9463a2860a..fe202838164 100644 --- a/share/man/man9/malloc.9 +++ b/share/man/man9/malloc.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: malloc.9,v 1.19 2002/07/17 11:49:36 art Exp $ +.\" $OpenBSD: malloc.9,v 1.20 2002/08/28 08:28:20 tdeval Exp $ .\" $NetBSD: malloc.9,v 1.2 1996/10/30 05:29:54 lukem Exp $ .\" .\" Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -298,7 +298,7 @@ VM page buckets. .It Dv M_VMSWAP VM swap structures. .It Dv M_RAIDFRAME -Raidframe data. +RAIDframe data. .It Dv M_UVMAMAP UVM amap and realted. .It Dv M_UVMAOBJ diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h index c7e7fa8e4ed..d94a15e1a64 100644 --- a/sys/sys/malloc.h +++ b/sys/sys/malloc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: malloc.h,v 1.60 2002/06/28 16:00:23 art Exp $ */ +/* $OpenBSD: malloc.h,v 1.61 2002/08/28 08:28:03 tdeval Exp $ */ /* $NetBSD: malloc.h,v 1.39 1998/07/12 19:52:01 augustss Exp $ */ /* @@ -140,7 +140,7 @@ /* 84-91 - free */ #define M_VMSWAP 92 /* VM swap structures */ /* 93-96 - free */ -#define M_RAIDFRAME 97 /* Raidframe data */ +#define M_RAIDFRAME 97 /* RAIDframe data */ #define M_UVMAMAP 98 /* UVM amap and related */ #define M_UVMAOBJ 99 /* UVM aobj and related */ /* 100 - free */ @@ -257,7 +257,7 @@ NULL, NULL, NULL, NULL, \ "VM swap", /* 92 M_VMSWAP */ \ NULL, NULL, NULL, NULL, \ - "RaidFrame data", /* 97 M_RAIDFRAME */ \ + "RAIDframe data", /* 97 M_RAIDFRAME */ \ "UVM amap", /* 98 M_UVMAMAP */ \ "UVM aobj", /* 99 M_UVMAOBJ */ \ NULL, \ |