From 4c68b10020d800f4747abca1a559191d05dfba15 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 2 Apr 2020 13:25:26 -0700 Subject: [PATCH] ncm: correct InstallContentMetaWriter ctor --- .../include/stratosphere/ncm/ncm_content_meta.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libstratosphere/include/stratosphere/ncm/ncm_content_meta.hpp b/libraries/libstratosphere/include/stratosphere/ncm/ncm_content_meta.hpp index a307da0f6..3f015e80c 100644 --- a/libraries/libstratosphere/include/stratosphere/ncm/ncm_content_meta.hpp +++ b/libraries/libstratosphere/include/stratosphere/ncm/ncm_content_meta.hpp @@ -360,7 +360,7 @@ namespace ams::ncm { class InstallContentMetaWriter : public ContentMetaAccessor { public: - InstallContentMetaWriter(void *data, size_t size) : ContentMetaAccessor(data, size) { /* ... */ } + InstallContentMetaWriter(const void *data, size_t size) : ContentMetaAccessor(data, size) { /* ... */ } using ContentMetaAccessor::CalculateSize; using ContentMetaAccessor::CalculateContentRequiredSize;