Fix an obvious typo spotted by Reid Kleckner, and breaking windows builds.

llvm-svn: 171559
This commit is contained in:
Chandler Carruth 2013-01-04 23:46:04 +00:00
parent 53430eb877
commit b79a7aa541
1 changed files with 1 additions and 1 deletions

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