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
This commit is contained in:
Chandler Carruth 2013-01-04 23:46:04 +00:00
parent 0319888773
commit 6601485662

View File

@ -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()