From 6601485662f92bf5b8726c7de35f8d90b0539a3f Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Fri, 4 Jan 2013 23:46:04 +0000 Subject: [PATCH] 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 --- lib/Support/Windows/Process.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()