diff options
author | bunnei <bunneidev@gmail.com> | 2018-03-19 16:29:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-19 16:29:03 -0400 |
commit | a90ab1dec7b4b4cefc73115310dec57363114a05 (patch) | |
tree | 45ebd96f672851f816aca4b09b599df5ee8f8c5c /src/core/gdbstub/gdbstub.cpp | |
parent | b2d7c92caee6f916ac9b3aa3476a5ceafc8e6e0f (diff) | |
parent | 1d8b6ad13b4808034298b856c24a78d4d87acac2 (diff) |
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/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() { u64 len = HexToLong(start_offset, static_cast<u64>((command_buffer + command_length) - start_offset)); - LOG_DEBUG(Debug_GDBStub, "gdb: addr: %016llx len: %016llx\n", addr, len); + LOG_DEBUG(Debug_GDBStub, "gdb: addr: %016lx len: %016lx\n", addr, len); if (len * 2 > sizeof(reply)) { SendReply("E01"); |