summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-05-21 10:43:55 +0200
committerGitHub <noreply@github.com>2020-05-21 10:43:55 +0200
commitcb75ccc1f70778c245947047b5139795b9463c48 (patch)
tree1f166d54f63c08b1e6481a6a163edef2539a03f8 /src/core/hle/service
parentnifm: correct assert in CreateTemporaryNetworkProfile (diff)
downloadyuzu-cb75ccc1f70778c245947047b5139795b9463c48.tar
yuzu-cb75ccc1f70778c245947047b5139795b9463c48.tar.gz
yuzu-cb75ccc1f70778c245947047b5139795b9463c48.tar.bz2
yuzu-cb75ccc1f70778c245947047b5139795b9463c48.tar.lz
yuzu-cb75ccc1f70778c245947047b5139795b9463c48.tar.xz
yuzu-cb75ccc1f70778c245947047b5139795b9463c48.tar.zst
yuzu-cb75ccc1f70778c245947047b5139795b9463c48.zip
Diffstat (limited to 'src/core/hle/service')
-rw-r--r--src/core/hle/service/nifm/nifm.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp
index aa6fbf67f..01ddcdbd6 100644
--- a/src/core/hle/service/nifm/nifm.cpp
+++ b/src/core/hle/service/nifm/nifm.cpp
@@ -177,7 +177,8 @@ private:
void CreateTemporaryNetworkProfile(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_NIFM, "called");
- ASSERT_MSG(ctx.GetReadBufferSize() == 0x17c, "SfNetworkProfileData is not the correct size");
+ ASSERT_MSG(ctx.GetReadBufferSize() == 0x17c,
+ "SfNetworkProfileData is not the correct size");
u128 uuid{};
auto buffer = ctx.ReadBuffer();
std::memcpy(&uuid, buffer.data() + 8, sizeof(u128));