ntdll: Also print %ss in dispatch_exception().
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f0328650cd
commit
f5fef036fd
|
@ -214,8 +214,8 @@ NTSTATUS WINAPI dispatch_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
|
||||||
TRACE(" eax=%08x ebx=%08x ecx=%08x edx=%08x esi=%08x edi=%08x\n",
|
TRACE(" eax=%08x ebx=%08x ecx=%08x edx=%08x esi=%08x edi=%08x\n",
|
||||||
context->Eax, context->Ebx, context->Ecx,
|
context->Eax, context->Ebx, context->Ecx,
|
||||||
context->Edx, context->Esi, context->Edi );
|
context->Edx, context->Esi, context->Edi );
|
||||||
TRACE(" ebp=%08x esp=%08x cs=%04x ds=%04x es=%04x fs=%04x gs=%04x flags=%08x\n",
|
TRACE(" ebp=%08x esp=%08x cs=%04x ss=%04x ds=%04x es=%04x fs=%04x gs=%04x flags=%08x\n",
|
||||||
context->Ebp, context->Esp, context->SegCs, context->SegDs,
|
context->Ebp, context->Esp, context->SegCs, context->SegSs, context->SegDs,
|
||||||
context->SegEs, context->SegFs, context->SegGs, context->EFlags );
|
context->SegEs, context->SegFs, context->SegGs, context->EFlags );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue