mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
strat: add missing semicolon
This commit is contained in:
parent
7668dfb756
commit
36e3519982
1 changed files with 1 additions and 1 deletions
|
@ -681,7 +681,7 @@ namespace ams::ldr {
|
||||||
/* Load NSOs into process memory. */
|
/* Load NSOs into process memory. */
|
||||||
{
|
{
|
||||||
/* Ensure we close the process handle, if we fail. */
|
/* Ensure we close the process handle, if we fail. */
|
||||||
ON_RESULT_FAILURE { os::CloseNativeHandle(info.process_handle); }
|
ON_RESULT_FAILURE { os::CloseNativeHandle(info.process_handle); };
|
||||||
|
|
||||||
/* Load all NSOs. */
|
/* Load all NSOs. */
|
||||||
R_TRY(LoadAutoLoadModules(std::addressof(info), g_nso_headers, g_has_nso, argument));
|
R_TRY(LoadAutoLoadModules(std::addressof(info), g_nso_headers, g_has_nso, argument));
|
||||||
|
|
Loading…
Reference in a new issue