remove warning

db4
Doug Coleman 2009-12-28 10:02:36 -06:00
parent 348b4bd2dc
commit eae646bfa0
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ u64 nano_count()
hi += 1;
lo = count.LowPart;
return (u64)(((u64)hi << 32) | (u64)lo)*(1000000000.0/frequency.QuadPart);
return (u64)((((u64)hi << 32) | (u64)lo)*(1000000000.0/frequency.QuadPart));
}
void sleep_nanos(u64 nsec)