diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-05 22:03:39 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-09 00:12:45 +0900 |
commit | 6fe7f4a63ac7b1efe182d861722e2baf71b1be16 (patch) | |
tree | 823a1563e36e40cf2ad501394e10a2e23ba2f635 /i386/intel/pmap.c | |
parent | a86e71f182495d73db2176d0927697e6e371517e (diff) |
i386/intel/pmap.c: use boolean instead of an int
* i386/intel/pmap.c (pmap_debug): Use boolean instead of an int.
Diffstat (limited to 'i386/intel/pmap.c')
-rw-r--r-- | i386/intel/pmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c index b89524e..047f954 100644 --- a/i386/intel/pmap.c +++ b/i386/intel/pmap.c @@ -402,7 +402,7 @@ pmap_t kernel_pmap; struct kmem_cache pmap_cache; /* cache of pmap structures */ -int pmap_debug = 0; /* flag for debugging prints */ +boolean_t pmap_debug = FALSE; /* flag for debugging prints */ #if 0 int ptes_per_vm_page; /* number of hardware ptes needed |