Index: webrtc/base/timeutils.cc |
diff --git a/webrtc/base/timeutils.cc b/webrtc/base/timeutils.cc |
index c424f701f77fc2b642d4f25429f6d1aaf3e93811..509b6958f595e148edf34f5ea5491ed6c11994e6 100644 |
--- a/webrtc/base/timeutils.cc |
+++ b/webrtc/base/timeutils.cc |
@@ -47,7 +47,7 @@ int64_t SystemTimeNanos() { |
// Get the timebase if this is the first time we run. |
// Recommended by Apple's QA1398. |
if (mach_timebase_info(&timebase) != KERN_SUCCESS) { |
- RTC_DCHECK(false); |
+ RTC_NOTREACHED(); |
} |
} |
// Use timebase to convert absolute time tick units into nanoseconds. |