From 67cf4a374ea148323d178908eee307f8461cbde1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Sun, 22 Dec 2002 11:35:15 +0000 Subject: [PATCH] Fixed typo, Edi was not restored svn path=/trunk/; revision=3888 --- reactos/ntoskrnl/ps/debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/ps/debug.c b/reactos/ntoskrnl/ps/debug.c index 71701f1f801..286c31bd5e5 100644 --- a/reactos/ntoskrnl/ps/debug.c +++ b/reactos/ntoskrnl/ps/debug.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: debug.c,v 1.6 2002/09/08 10:23:40 chorns Exp $ +/* $Id: debug.c,v 1.7 2002/12/22 11:35:15 gvg Exp $ * * PROJECT: ReactOS kernel * FILE: ntoskrnl/ps/debug.c @@ -74,7 +74,7 @@ KeContextToTrapFrame(PCONTEXT Context, */ /* TrapFrame->Edx = Context->Edx; */ TrapFrame->Esi = Context->Esi; - TrapFrame->Edx = Context->Edi; + TrapFrame->Edi = Context->Edi; } if (Context->ContextFlags & CONTEXT_SEGMENTS) {