summaryrefslogtreecommitdiff
path: root/kern
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-12-05 22:03:56 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-12-09 00:24:25 +0900
commit18a03f7476f8e79f627bbabdcb478b3c81a6bbdf (patch)
tree10db659abda103db48b0b032197b3b9a4caff559 /kern
parent4bea7554a73ea34f561bc2ecadcbecca09358b87 (diff)
kern/syscall_sw.c: use boolean instead of an int
* kern/syscall_sw.c (kern_invalid_debug): Use boolean instead of an int.
Diffstat (limited to 'kern')
-rw-r--r--kern/syscall_sw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/syscall_sw.c b/kern/syscall_sw.c
index 9397441..084f2e0 100644
--- a/kern/syscall_sw.c
+++ b/kern/syscall_sw.c
@@ -58,7 +58,7 @@
* the positive numbers) are reserved for Unix.
*/
-int kern_invalid_debug = 0;
+boolean_t kern_invalid_debug = FALSE;
mach_port_t null_port()
{