summaryrefslogtreecommitdiffstats
path: root/src/yuzu_tester/service/yuzutest.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-06-23 04:54:09 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-06-23 04:56:15 +0200
commitb8798a995bd8aaefc0d21577c9d129e19b39fb15 (patch)
tree7ae4c23b836c63cce4175dbdd303bb05f2a79dd3 /src/yuzu_tester/service/yuzutest.cpp
parentlm: Silence no return value warning (diff)
downloadyuzu-b8798a995bd8aaefc0d21577c9d129e19b39fb15.tar
yuzu-b8798a995bd8aaefc0d21577c9d129e19b39fb15.tar.gz
yuzu-b8798a995bd8aaefc0d21577c9d129e19b39fb15.tar.bz2
yuzu-b8798a995bd8aaefc0d21577c9d129e19b39fb15.tar.lz
yuzu-b8798a995bd8aaefc0d21577c9d129e19b39fb15.tar.xz
yuzu-b8798a995bd8aaefc0d21577c9d129e19b39fb15.tar.zst
yuzu-b8798a995bd8aaefc0d21577c9d129e19b39fb15.zip
Diffstat (limited to 'src/yuzu_tester/service/yuzutest.cpp')
-rw-r--r--src/yuzu_tester/service/yuzutest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_tester/service/yuzutest.cpp b/src/yuzu_tester/service/yuzutest.cpp
index 85d3f436b..2d3f6e3a7 100644
--- a/src/yuzu_tester/service/yuzutest.cpp
+++ b/src/yuzu_tester/service/yuzutest.cpp
@@ -53,7 +53,7 @@ private:
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
- rb.Push<u32>(write_size);
+ rb.Push<u32>(static_cast<u32>(write_size));
}
void StartIndividual(Kernel::HLERequestContext& ctx) {