ipc/receive: trivially correct result return codeflow

This commit is contained in:
Michael Scire 2020-07-10 10:35:33 -07:00
parent 9fa6d12586
commit 4e226b523e

View file

@ -687,9 +687,9 @@ namespace ams::kern {
/* Set the server result. */
if (recv_list_broken) {
return svc::ResultReceiveListBroken();
result = svc::ResultReceiveListBroken();
} else {
return svc::ResultNotFound();
result = svc::ResultNotFound();
}
}