ntdll/tests: Fix a copy-paste error in an ok message.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
805a670ce5
commit
f47a09b917
|
@ -3026,7 +3026,7 @@ static DWORD WINAPI handler( EXCEPTION_RECORD *rec, ULONG64 frame,
|
|||
todo_wine ok( context->SegEs == context->SegSs,
|
||||
"%u: es %#x does not match ss %#x\n", entry, context->SegEs, context->SegSs );
|
||||
todo_wine ok( context->SegGs == context->SegSs,
|
||||
"%u: ds %#x does not match ss %#x\n", entry, context->SegGs, context->SegSs );
|
||||
"%u: gs %#x does not match ss %#x\n", entry, context->SegGs, context->SegSs );
|
||||
|
||||
todo_wine ok( context->SegFs && context->SegFs != context->SegSs,
|
||||
"%u: got fs %#x\n", entry, context->SegFs );
|
||||
|
|
Loading…
Reference in New Issue