diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-05 22:03:42 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-09 00:13:58 +0900 |
commit | 9341bd89f059310ab30ca0b644a88c73bb1458d9 (patch) | |
tree | 263805b360d7a1f771964c848d469adca964813e /ipc | |
parent | 7ac2f982c65e38ab0fbc97b899178596bb4e9252 (diff) |
ipc/mach_port.c: use boolean instead of an int
* ipc/mach_port.c (mach_port_deallocate_debug): Use boolean instead of an int.
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/mach_port.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/mach_port.c b/ipc/mach_port.c index f0f00d2..3e5af40 100644 --- a/ipc/mach_port.c +++ b/ipc/mach_port.c @@ -555,7 +555,7 @@ mach_port_allocate(space, right, namep) * KERN_INVALID_NAME The name doesn't denote a right. */ -static volatile int mach_port_deallocate_debug = 0; +static volatile boolean_t mach_port_deallocate_debug = FALSE; kern_return_t mach_port_destroy( |