From: Chandler Carruth Date: Fri, 4 Jan 2013 23:46:04 +0000 (+0000) Subject: Fix an obvious typo spotted by Reid Kleckner, and breaking windows builds. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6601485662f92bf5b8726c7de35f8d90b0539a3f;p=oota-llvm.git Fix an obvious typo spotted by Reid Kleckner, and breaking windows builds. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171559 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/Windows/Process.inc b/lib/Support/Windows/Process.inc index 789ae7ddcea..ad9412852f1 100644 --- a/lib/Support/Windows/Process.inc +++ b/lib/Support/Windows/Process.inc @@ -116,7 +116,7 @@ void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time, return; user_time = getTimeValueFromFILETIME(UserTime); - sys_time = getTimeValueFromFILETIME(SystemTime); + sys_time = getTimeValueFromFILETIME(KernelTime); } int Process::GetCurrentUserId()