summaryrefslogtreecommitdiff
path: root/src/core/debugger/gdbstub.cpp
diff options
context:
space:
mode:
authorGravatar Morph2022-06-01 01:40:18 -0400
committerGravatar Morph2022-06-01 01:40:18 -0400
commita32f6e9d8e994bfdc5a1f67c38dd3a5123710440 (patch)
treebb2eb7a4a8350385fad8703cd1a8fcc92ff0f82a /src/core/debugger/gdbstub.cpp
parentMerge pull request #8394 from liamwhite/debugger (diff)
downloadyuzu-a32f6e9d8e994bfdc5a1f67c38dd3a5123710440.tar.gz
yuzu-a32f6e9d8e994bfdc5a1f67c38dd3a5123710440.tar.xz
yuzu-a32f6e9d8e994bfdc5a1f67c38dd3a5123710440.zip
gdbstub: Explicitly cast return type to u8
Otherwise, the addition promotes the returned value to an int instead of keeping it as a u8.
Diffstat (limited to 'src/core/debugger/gdbstub.cpp')
-rw-r--r--src/core/debugger/gdbstub.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/debugger/gdbstub.cpp b/src/core/debugger/gdbstub.cpp
index 718c45952..ee7598165 100644
--- a/src/core/debugger/gdbstub.cpp
+++ b/src/core/debugger/gdbstub.cpp
@@ -358,8 +358,8 @@ std::optional<std::string> GDBStub::DetachCommand() {
358} 358}
359 359
360u8 GDBStub::CalculateChecksum(std::string_view data) { 360u8 GDBStub::CalculateChecksum(std::string_view data) {
361 return static_cast<u8>( 361 return std::accumulate(data.begin(), data.end(), u8{0},
362 std::accumulate(data.begin(), data.end(), u8{0}, [](u8 lhs, u8 rhs) { return lhs + rhs; })); 362 [](u8 lhs, u8 rhs) { return static_cast<u8>(lhs + rhs); });
363} 363}
364 364
365void GDBStub::SendReply(std::string_view data) { 365void GDBStub::SendReply(std::string_view data) {