https://git.reactos.org/?p=reactos.git;a=commitdiff;h=2a8864967f9966a72704d8...
commit 2a8864967f9966a72704d82b5c289ee69d22463f Author: Serge Gautherie reactos-git_serge_171003@gautherie.fr AuthorDate: Sun Jan 7 15:07:22 2018 +0100
[DRWTSN32] Update output string copypasta from #268 168223aeb88f5503dedc60b982a1ba80d972703d. --- base/applications/drwtsn32/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/base/applications/drwtsn32/main.cpp b/base/applications/drwtsn32/main.cpp index 8503233179..2f86518836 100644 --- a/base/applications/drwtsn32/main.cpp +++ b/base/applications/drwtsn32/main.cpp @@ -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