strat: add missing semicolon

This commit is contained in:
Michael Scire 2022-02-16 22:13:41 -08:00
parent 7668dfb756
commit 36e3519982

View file

@ -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));