[NTVDM]: Addendum to r64985: correctly display the IPS and the TimerTicks (both of...
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sun, 26 Oct 2014 02:38:07 +0000 (02:38 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sun, 26 Oct 2014 02:38:07 +0000 (02:38 +0000)
svn path=/trunk/; revision=65005

reactos/subsystems/ntvdm/clock.c

index bd4ff2e..45b440a 100644 (file)
@@ -149,7 +149,7 @@ VOID ClockUpdate(VOID)
 #ifdef IPS_DISPLAY
     if ((CurrentTickCount - LastCyclePrintout) >= 1000)
     {
-        DPRINT1("NTVDM: %lu Instructions Per Second; TimerTicks = %I64d\n", Cycles * 1000 / (CurrentTickCount - LastCyclePrintout), TimerTicks);
+        DPRINT1("NTVDM: %I64u Instructions Per Second; TimerTicks = %I64d\n", Cycles * 1000 / (CurrentTickCount - LastCyclePrintout), TimerTicks);
         LastCyclePrintout = CurrentTickCount;
         Cycles = 0;
     }