Index: runtime/vm/os_fuchsia.cc |
diff --git a/runtime/vm/os_fuchsia.cc b/runtime/vm/os_fuchsia.cc |
index db9264ee2a3526de093d404118e306413dbd7e66..5272825c0370aa688a89ac512a0fcc84e00b4b38 100644 |
--- a/runtime/vm/os_fuchsia.cc |
+++ b/runtime/vm/os_fuchsia.cc |
@@ -50,12 +50,12 @@ int64_t OS::GetCurrentTimeMillis() { |
int64_t OS::GetCurrentTimeMicros() { |
- return _magenta_current_time() / 1000; |
+ return mx_current_time() / 1000; |
} |
int64_t OS::GetCurrentMonotonicTicks() { |
- return _magenta_current_time(); |
+ return mx_current_time(); |
} |