From 7668dfb756ffda14671974cb6ec37d4472d3a889 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 16 Feb 2022 12:55:12 -0800 Subject: [PATCH] lib: add missing semicolon --- libraries/libstratosphere/source/ncm/ncm_install_task_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libstratosphere/source/ncm/ncm_install_task_base.cpp b/libraries/libstratosphere/source/ncm/ncm_install_task_base.cpp index 8c905dc25..784851919 100644 --- a/libraries/libstratosphere/source/ncm/ncm_install_task_base.cpp +++ b/libraries/libstratosphere/source/ncm/ncm_install_task_base.cpp @@ -712,7 +712,7 @@ namespace ams::ncm { /* Create the placeholder. */ R_TRY(storage->CreatePlaceHolder(placeholder_id, meta_info.content_id, meta_info.content_size)); - ON_RESULT_FAILURE { storage->DeletePlaceHolder(placeholder_id); } + ON_RESULT_FAILURE { storage->DeletePlaceHolder(placeholder_id); }; /* Output install content info. */ *out_install_content_info = this->MakeInstallContentInfoFrom(meta_info, placeholder_id, is_temporary);