mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Fixed typo, Edi was not restored
svn path=/trunk/; revision=3888
This commit is contained in:
parent
7140e3951d
commit
67cf4a374e
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* 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
|
* PROJECT: ReactOS kernel
|
||||||
* FILE: ntoskrnl/ps/debug.c
|
* FILE: ntoskrnl/ps/debug.c
|
||||||
|
@ -74,7 +74,7 @@ KeContextToTrapFrame(PCONTEXT Context,
|
||||||
*/
|
*/
|
||||||
/* TrapFrame->Edx = Context->Edx; */
|
/* TrapFrame->Edx = Context->Edx; */
|
||||||
TrapFrame->Esi = Context->Esi;
|
TrapFrame->Esi = Context->Esi;
|
||||||
TrapFrame->Edx = Context->Edi;
|
TrapFrame->Edi = Context->Edi;
|
||||||
}
|
}
|
||||||
if (Context->ContextFlags & CONTEXT_SEGMENTS)
|
if (Context->ContextFlags & CONTEXT_SEGMENTS)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue