]> git.saurik.com Git - apple/xnu.git/blobdiff - libsyscall/mach/ms_thread_switch.c
xnu-1699.22.73.tar.gz
[apple/xnu.git] / libsyscall / mach / ms_thread_switch.c
index e7769c11aaa42bf53b17e986e193c6f3de9e96b7..2d1f16fc805c128f94b666701f4b3539c6ce8c11 100644 (file)
@@ -65,12 +65,12 @@ extern kern_return_t syscall_thread_switch(mach_port_name_t, int, mach_msg_timeo
 
 kern_return_t
 thread_switch(
-       mach_port_t             thread,
-       int                     option,
-       mach_msg_timeout_t      option_time)
+       mach_port_t thread,
+       int option,
+       mach_msg_timeout_t option_time)
 {
        kern_return_t result;
        
-               result = syscall_thread_switch(thread, option, option_time);
-       return (result);
+       result = syscall_thread_switch(thread, option, option_time);
+       return result;
 }