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(); }