Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(332)

Unified Diff: runtime/vm/os_macos.cc

Issue 1952253003: Fix MacOS build breakage (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/os_macos.cc
diff --git a/runtime/vm/os_macos.cc b/runtime/vm/os_macos.cc
index 31bb3e86917d944d10b6d5530bb02d665486e344..f8c7caf2c410dcc58974af05f663c39f0393f246 100644
--- a/runtime/vm/os_macos.cc
+++ b/runtime/vm/os_macos.cc
@@ -159,7 +159,7 @@ int64_t OS::GetCurrentThreadCPUMicros() {
(info->system_time.seconds + info->user_time.seconds);
thread_cpu_micros *= kMicrosecondsPerSecond;
thread_cpu_micros += info->user_time.microseconds;
- thread_cpu_micros += info->system_time.microseconds
+ thread_cpu_micros += info->system_time.microseconds;
return thread_cpu_micros;
#endif // TARGET_OS_IOS
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698