From 7b8b181526accd7c1eea238a0779e21d1a46d568 Mon Sep 17 00:00:00 2001 From: cgd Date: Sat, 15 May 1993 01:19:38 +0000 Subject: [PATCH] fix M_LAST off-by-one error. if you don't understand, look in kern_malloc.c --- sys/sys/malloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h index 8c5594c63243..3aba878f9aa0 100644 --- a/sys/sys/malloc.h +++ b/sys/sys/malloc.h @@ -93,7 +93,7 @@ #define M_TEMP 49 /* misc temporary data buffers */ #define M_PCFSMNT 50 /* PCFS mount structure */ #define M_PCFSFAT 51 /* PCFS fat table */ -#define M_LAST 52 +#define M_LAST M_PCFSFAT #define INITKMEMNAMES { \ "free", /* 0 M_FREE */ \