diff options
author | N00byKing <N00byKing@hotmail.de> | 2018-03-19 17:07:08 +0100 |
---|---|---|
committer | N00byKing <N00byKing@hotmail.de> | 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 yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.gz yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.bz2 yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.lz yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.xz yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.zst yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.zip |
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"); |