make win32 compile again

This commit is contained in:
Craig Dowell
2009-10-26 14:50:38 -07:00
parent 1ea257ac14
commit e17fe2e7cf
6 changed files with 178 additions and 54 deletions

View File

@@ -248,7 +248,7 @@ runBench (void (*bench) (uint32_t), uint32_t n, char const *name)
SystemWallClockMs time;
time.Start ();
(*bench) (n);
unsigned long long deltaMs = time.End ();
uint64_t deltaMs = time.End ();
double ps = n;
ps *= 1000;
ps /= deltaMs;