From 46b0d45aad4d61d5bf3f33a0b00f46a677288fca Mon Sep 17 00:00:00 2001 From: Adubbz Date: Tue, 25 Feb 2020 16:12:33 +1100 Subject: [PATCH] Syntax improvements --- stratosphere/ncm/source/ncm_contentstorage.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/stratosphere/ncm/source/ncm_contentstorage.cpp b/stratosphere/ncm/source/ncm_contentstorage.cpp index 567c6720c..e4bb38ff2 100644 --- a/stratosphere/ncm/source/ncm_contentstorage.cpp +++ b/stratosphere/ncm/source/ncm_contentstorage.cpp @@ -82,9 +82,7 @@ namespace ams::ncm { Result ContentStorageInterface::GeneratePlaceHolderId(sf::Out out) { R_TRY(this->EnsureEnabled()); - PlaceHolderId placeholder_id; - placeholder_id.uuid = util::GenerateUuid(); - out.SetValue(placeholder_id); + out.SetValue({util::GenerateUuid()}); return ResultSuccess(); }