]> git.saurik.com Git - apple/xnu.git/blobdiff - tests/remote_time.c
xnu-4903.270.47.tar.gz
[apple/xnu.git] / tests / remote_time.c
index cd028a9deb7ea022743906fe75430d36b66f4ed6..1cb3f94cc4a1b2d081879451e13b1db7ca1bdfa0 100644 (file)
@@ -7,14 +7,14 @@
 extern uint64_t __mach_bridge_remote_time(uint64_t);
 
 T_DECL(remote_time_syscall, "test mach_bridge_remote_time syscall",
-       T_META_CHECK_LEAKS(false))
+    T_META_CHECK_LEAKS(false))
 {
 #if TARGET_OS_BRIDGE
        uint64_t local_time = mach_absolute_time();
        uint64_t remote_time1 = mach_bridge_remote_time(local_time);
        uint64_t remote_time2 = __mach_bridge_remote_time(local_time);
        T_LOG("local_time = %llu, remote_time1 = %llu, remote_time2 = %llu",
-               local_time, remote_time1, remote_time2);
+           local_time, remote_time1, remote_time2);
        T_ASSERT_EQ(remote_time1, remote_time2, "syscall works");
 #else
        T_SKIP("Skipping test");