[NTOS:MM] Quick fix: use SIZE_T instead of ULONG, because ULONG is 32-bit and on...
[reactos.git] / ntoskrnl / ke / timerobj.c
index c2e6341..43a348e 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * PROJECT:         ReactOS Kernel
  * LICENSE:         GPL - See COPYING in the top level directory
- * FILE:            ntoskrnl/ke/timer.c
+ * FILE:            ntoskrnl/ke/timerobj.c
  * PURPOSE:         Handle Kernel Timers (Kernel-part of Executive Timers)
  * PROGRAMMERS:     Alex Ionescu (alex.ionescu@reactos.org)
  */
@@ -68,7 +68,7 @@ KiInsertTimerTable(IN PKTIMER Timer,
     BOOLEAN Expired = FALSE;
     PLIST_ENTRY ListHead, NextEntry;
     PKTIMER CurrentTimer;
-    DPRINT("KiInsertTimerTable(): Timer %p, Hand: %d\n", Timer, Hand);
+    DPRINT("KiInsertTimerTable(): Timer %p, Hand: %lu\n", Timer, Hand);
 
     /* Check if the period is zero */
     if (!Timer->Period) Timer->Header.SignalState = FALSE;
@@ -256,7 +256,7 @@ KeInitializeTimerEx(OUT PKTIMER Timer,
     Timer->Header.SignalState = 0;
     InitializeListHead(&(Timer->Header.WaitListHead));
 
-    /* Initalize the Other data */
+    /* Initialize the Other data */
     Timer->DueTime.QuadPart = 0;
     Timer->Period = 0;
 }