summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/fsp_srv.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-10-05 00:47:44 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-10-05 01:41:21 +0200
commit99db7d23dda0b461662479b5ee8b96ab7419335a (patch)
treec14ed18621bb54a20d90cd94af5763f99b7c8eaf /src/core/hle/service/filesystem/fsp_srv.cpp
parentservice/bcat: Silence -Wreorder and -Wunused (diff)
downloadyuzu-99db7d23dda0b461662479b5ee8b96ab7419335a.tar
yuzu-99db7d23dda0b461662479b5ee8b96ab7419335a.tar.gz
yuzu-99db7d23dda0b461662479b5ee8b96ab7419335a.tar.bz2
yuzu-99db7d23dda0b461662479b5ee8b96ab7419335a.tar.lz
yuzu-99db7d23dda0b461662479b5ee8b96ab7419335a.tar.xz
yuzu-99db7d23dda0b461662479b5ee8b96ab7419335a.tar.zst
yuzu-99db7d23dda0b461662479b5ee8b96ab7419335a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp
index eb982ad49..cbd5466c1 100644
--- a/src/core/hle/service/filesystem/fsp_srv.cpp
+++ b/src/core/hle/service/filesystem/fsp_srv.cpp
@@ -803,7 +803,7 @@ void FSP_SRV::CreateSaveDataFileSystem(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
auto save_struct = rp.PopRaw<FileSys::SaveDataDescriptor>();
- auto save_create_struct = rp.PopRaw<std::array<u8, 0x40>>();
+ [[maybe_unused]] auto save_create_struct = rp.PopRaw<std::array<u8, 0x40>>();
u128 uid = rp.PopRaw<u128>();
LOG_DEBUG(Service_FS, "called save_struct = {}, uid = {:016X}{:016X}", save_struct.DebugInfo(),