don't downcast to int before determining number of hours

This commit is contained in:
Hisham Muhammad 2012-06-25 03:06:36 +00:00
parent 0d8f654343
commit 078b831696
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ static void Process_printTime(RichString* str, unsigned long long t) {
double jiffytime = 1.0 / jiffy;
double realTime = t * jiffytime;
int iRealTime = (int) realTime;
unsigned long long iRealTime = (unsigned long long) realTime;
unsigned long long hours = iRealTime / 3600;
int minutes = (iRealTime / 60) % 60;