Merge pull request #3338 from wwylele/resource-limit-fix

Kernel/SVC: fix typo in GetResourceLimitLimitValues
This commit is contained in:
Weiyi Wang 2017-12-31 08:56:02 +02:00 committed by GitHub
commit 743c247f46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -715,7 +715,7 @@ static ResultCode GetResourceLimitLimitValues(VAddr values, Handle resource_limi
for (unsigned int i = 0; i < name_count; ++i) {
u32 name = Memory::Read32(names + i * sizeof(u32));
s64 value = resource_limit->GetMaxResourceValue(names);
s64 value = resource_limit->GetMaxResourceValue(name);
Memory::Write64(values + i * sizeof(u64), value);
}