exo: fix building on release

This commit is contained in:
Michael Scire 2020-11-18 15:07:10 -08:00 committed by SciresM
parent 69f9fb8713
commit 835aa6b9db
7 changed files with 10 additions and 2 deletions

View file

@ -27,6 +27,9 @@ namespace ams::secmon {
}
void ExceptionHandlerImpl(uintptr_t lr, uintptr_t sp) {
/* On release config, we won't actually use the passed parameters. */
AMS_UNUSED(lr, sp);
/* Ensure that previous logs have been flushed. */
AMS_LOG_FLUSH();