From e394748e8e1c9f0d4c97f0e7a29a6682ee5dfd7b Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 23 Aug 1999 18:16:05 +0000 Subject: [PATCH] Correct the inconsistent formatting in struct vm_map. Addendum to rev 1.47: submitted by dillon. --- sys/vm/vm_map.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/vm/vm_map.h b/sys/vm/vm_map.h index 251029d1a4a..f12c042cd6e 100644 --- a/sys/vm/vm_map.h +++ b/sys/vm/vm_map.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_map.h,v 1.46 1999/08/18 03:56:57 mjacob Exp $ + * $Id: vm_map.h,v 1.47 1999/08/23 18:08:34 alc Exp $ */ /* @@ -156,7 +156,7 @@ struct vm_map { struct lock lock; /* Lock for map data */ int nentries; /* Number of entries */ vm_size_t size; /* virtual size */ - unsigned char system_map; /* Am I a system map? */ + u_char system_map; /* Am I a system map? */ vm_map_entry_t hint; /* hint for quick lookups */ unsigned int timestamp; /* Version number */ vm_map_entry_t first_free; /* First free space hint */