[NTOS:KE:EX] Fix comment typo.

This commit is contained in:
Hermès Bélusca-Maïto 2022-05-02 03:11:01 +02:00
parent 7b410fb8ca
commit 0f3da97456
No known key found for this signature in database
GPG Key ID: 3B2539C65E7B93D0
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
* - Acquire locks only on MP systems.
* - Be safe at HIGH_LEVEL (no paged access).
* - Preserve flags.
* - Disable interrups.
* - Disable interrupts.
*/
/*VOID

View File

@ -588,7 +588,7 @@ KiRetireDpcList(IN PKPRCB Prcb)
TimerHand = Prcb->TimerHand;
Prcb->TimerRequest = 0;
/* Expire timers with interrups enabled */
/* Expire timers with interrupts enabled */
_enable();
KiTimerExpiration(NULL, NULL, (PVOID)TimerHand, NULL);
_disable();