| Index: runtime/vm/os_thread_fuchsia.cc
|
| diff --git a/runtime/vm/os_thread_fuchsia.cc b/runtime/vm/os_thread_fuchsia.cc
|
| index 9d17913f9f2748433f00ea685b2b3e33e7158d21..5a94f4752e9e5ef32eebd8b6b2a74c7e36e0c204 100644
|
| --- a/runtime/vm/os_thread_fuchsia.cc
|
| +++ b/runtime/vm/os_thread_fuchsia.cc
|
| @@ -165,7 +165,7 @@ ThreadId OSThread::GetCurrentThreadId() {
|
| mx_status_t status =
|
| mx_object_get_info(thread_handle, MX_INFO_HANDLE_BASIC, &info,
|
| sizeof(info), nullptr, nullptr);
|
| - if (status != NO_ERROR) {
|
| + if (status != MX_OK) {
|
| FATAL1("Failed to get thread koid: %s\n", mx_status_get_string(status));
|
| }
|
| return info.koid;
|
|
|