mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2025-01-08 21:47:57 +00:00
lib: add missing semicolon
This commit is contained in:
parent
2fce50471b
commit
7668dfb756
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ namespace ams::ncm {
|
||||||
|
|
||||||
/* Create the placeholder. */
|
/* Create the placeholder. */
|
||||||
R_TRY(storage->CreatePlaceHolder(placeholder_id, meta_info.content_id, meta_info.content_size));
|
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. */
|
/* Output install content info. */
|
||||||
*out_install_content_info = this->MakeInstallContentInfoFrom(meta_info, placeholder_id, is_temporary);
|
*out_install_content_info = this->MakeInstallContentInfoFrom(meta_info, placeholder_id, is_temporary);
|
||||||
|
|
Loading…
Reference in a new issue