diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-05 22:03:56 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-09 00:24:25 +0900 |
commit | 18a03f7476f8e79f627bbabdcb478b3c81a6bbdf (patch) | |
tree | 10db659abda103db48b0b032197b3b9a4caff559 | |
parent | 4bea7554a73ea34f561bc2ecadcbecca09358b87 (diff) |
kern/syscall_sw.c: use boolean instead of an int
* kern/syscall_sw.c (kern_invalid_debug): Use boolean instead of an int.
-rw-r--r-- | kern/syscall_sw.c | 2 |
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() { |