mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-21 19:12:42 +02:00
ipc/receive: trivially correct result return codeflow
This commit is contained in:
parent
27d1e6e549
commit
652be6087e
@ -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 New Issue
Block a user