From c23beb3102ed9d9e23e13f4b1b320b0d84f4defc Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Wed, 15 Apr 2009 17:48:08 +0900 Subject: [PATCH] winedbg: Fix a typo in the comment. --- programs/winedbg/be_x86_64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/winedbg/be_x86_64.c b/programs/winedbg/be_x86_64.c index b1315bbc6c3..e822012f918 100644 --- a/programs/winedbg/be_x86_64.c +++ b/programs/winedbg/be_x86_64.c @@ -88,7 +88,7 @@ static void be_x86_64_print_context(HANDLE hThread, const CONTEXT* ctx, if (ctx->EFlags & 0x00004000) *pt-- = 'N'; /* Nested Task Flag */ if (ctx->EFlags & 0x00008000) *pt-- = '-'; if (ctx->EFlags & 0x00010000) *pt-- = 'R'; /* Resume Flag */ - if (ctx->EFlags & 0x00020000) *pt-- = 'V'; /* Vritual Mode Flag */ + if (ctx->EFlags & 0x00020000) *pt-- = 'V'; /* Virtual Mode Flag */ if (ctx->EFlags & 0x00040000) *pt-- = 'a'; /* Alignment Check Flag */ dbg_printf(" rip:%016lx rsp:%016lx rbp:%016lx eflags:%08x (%s)\n", -- 2.11.4.GIT