diff options
| author | 2018-03-19 16:29:03 -0400 | |
|---|---|---|
| committer | 2018-03-19 16:29:03 -0400 | |
| commit | a90ab1dec7b4b4cefc73115310dec57363114a05 (patch) | |
| tree | 45ebd96f672851f816aca4b09b599df5ee8f8c5c /src/core/gdbstub | |
| parent | Merge pull request #251 from Subv/tic_tsc (diff) | |
| parent | Clang Fixes (diff) | |
| download | yuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.tar.gz yuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.tar.xz yuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.zip | |
Merge pull request #252 from N00byKing/3064
Implement Pull #3064 from citra: Clean all format warnings (Yuzu-specific format warnings cleared too)
Diffstat (limited to 'src/core/gdbstub')
| -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"); |