diff options
| author | 2018-03-19 17:07:08 +0100 | |
|---|---|---|
| committer | 2018-03-19 17:07:08 +0100 | |
| commit | ef875d6a356fef22d52ec2cdf2a326297740ff66 (patch) | |
| tree | 8565762859d7be0329fb5991819b8381c690527d /src/core/gdbstub/gdbstub.cpp | |
| parent | Merge pull request #251 from Subv/tic_tsc (diff) | |
| download | yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.gz yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.xz yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.zip | |
Clean Warnings (?)
Diffstat (limited to 'src/core/gdbstub/gdbstub.cpp')
| -rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index 7a142dc21..e4f337a0a 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp | |||
| @@ -693,7 +693,7 @@ static void ReadMemory() { | |||
| 693 | u64 len = | 693 | u64 len = |
| 694 | HexToLong(start_offset, static_cast<u64>((command_buffer + command_length) - start_offset)); | 694 | HexToLong(start_offset, static_cast<u64>((command_buffer + command_length) - start_offset)); |
| 695 | 695 | ||
| 696 | LOG_DEBUG(Debug_GDBStub, "gdb: addr: %016llx len: %016llx\n", addr, len); | 696 | LOG_DEBUG(Debug_GDBStub, "gdb: addr: %016lx len: %016lx\n", addr, len); |
| 697 | 697 | ||
| 698 | if (len * 2 > sizeof(reply)) { | 698 | if (len * 2 > sizeof(reply)) { |
| 699 | SendReply("E01"); | 699 | SendReply("E01"); |