mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-23 12:22:08 +00:00
ipc/receive: trivially correct result return codeflow
This commit is contained in:
parent
9fa6d12586
commit
4e226b523e
1 changed files with 2 additions and 2 deletions
|
@ -687,9 +687,9 @@ namespace ams::kern {
|
||||||
|
|
||||||
/* Set the server result. */
|
/* Set the server result. */
|
||||||
if (recv_list_broken) {
|
if (recv_list_broken) {
|
||||||
return svc::ResultReceiveListBroken();
|
result = svc::ResultReceiveListBroken();
|
||||||
} else {
|
} else {
|
||||||
return svc::ResultNotFound();
|
result = svc::ResultNotFound();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue