winedbg: Fix typo in a comment.

This commit is contained in:
Mike Ruprecht 2009-03-01 14:09:19 -06:00 committed by Alexandre Julliard
parent 9f60f4e30d
commit c7b204e98a
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ static void be_i386_print_context(HANDLE hThread, const CONTEXT* ctx, int all_re
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 */
switch (get_selector_type(hThread, ctx, ctx->SegCs))