diff options
author | mjacob <mjacob@FreeBSD.org> | 1999-08-18 03:56:57 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 1999-08-18 03:56:57 +0000 |
commit | c3587e5dcb4c284938b70a3896c2d0f07b9cd626 (patch) | |
tree | 01ff192ea677473afc916cc5d245535b71b835f1 /sys/vm | |
parent | d5e1ba29cbc15f9dea61a1b3c0b4464ba3228d2f (diff) | |
download | FreeBSD-src-c3587e5dcb4c284938b70a3896c2d0f07b9cd626.zip FreeBSD-src-c3587e5dcb4c284938b70a3896c2d0f07b9cd626.tar.gz |
Fix breakage - an extra brace got inserted where DIAGNOSTIC was defined
but MAP_LOCK_DIAGNOSTIC wasn't.
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_map.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/vm/vm_map.h b/sys/vm/vm_map.h index d9a3e43..3d0f1de 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.44 1999/08/01 06:05:08 alc Exp $ + * $Id: vm_map.h,v 1.45 1999/08/16 18:21:09 alc Exp $ */ /* @@ -217,7 +217,6 @@ struct vmspace { } \ (map)->timestamp++; \ } while(0) -} #endif #else #define vm_map_lock(map) \ |