mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[NTOS:KD64] KdPollBreakIn(): Use the KeRestoreInterrupts() inline.
This commit is contained in:
parent
103a79ce4f
commit
c9f335e996
1 changed files with 2 additions and 2 deletions
|
@ -115,8 +115,8 @@ KdPollBreakIn(VOID)
|
|||
KeLowerIrql(OldIrql);
|
||||
}
|
||||
|
||||
/* Re-enable interrupts if they were enabled previously */
|
||||
if (Enable) _enable();
|
||||
/* Re-enable interrupts */
|
||||
KeRestoreInterrupts(Enable);
|
||||
}
|
||||
|
||||
/* Tell the caller to do a break */
|
||||
|
|
Loading…
Reference in a new issue