mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTOS:KE] Fix copy paste bug in exception helper routine for ARM (#4005)
This commit is contained in:
parent
7e3a7a0e84
commit
54d5ad7533
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ KeTrapFrameToContext(IN PKTRAP_FRAME TrapFrame,
|
|||
Context->R6 = ExceptionFrame->R6;
|
||||
Context->R7 = ExceptionFrame->R7;
|
||||
Context->R8 = ExceptionFrame->R8;
|
||||
Context->R0 = ExceptionFrame->R9;
|
||||
Context->R9 = ExceptionFrame->R9;
|
||||
Context->R10 = ExceptionFrame->R10;
|
||||
Context->R11 = ExceptionFrame->R11;
|
||||
Context->R12 = TrapFrame->R12;
|
||||
|
|
Loading…
Reference in a new issue