[DRWTSN32] Update output string copypasta from #268 168223aeb8.

This commit is contained in:
Serge Gautherie 2018-01-07 15:07:22 +01:00 committed by Thomas Faber
parent f463ebe9e7
commit 2a8864967f
No known key found for this signature in database
GPG key ID: 076E7C3D44720826

View file

@ -111,7 +111,7 @@ void PrintBugreport(FILE* output, DumpData& data)
xfprintf(output, "eip:%p esp:%p ebp:%p" NEWLINE,
ctx.Eip, ctx.Esp, ctx.Ebp);
#elif defined(_M_AMD64)
xfprintf(output, "eip:%p esp:%p ebp:%p" NEWLINE,
xfprintf(output, "rip:%p rsp:%p rbp:%p" NEWLINE,
ctx.Rip, ctx.Rsp, ctx.Rbp);
#else
#error Unknown architecture