Commit 078b8316 authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

don't downcast to int before determining number of hours

parent 0d8f6543
...@@ -311,7 +311,7 @@ static void Process_printTime(RichString* str, unsigned long long t) { ...@@ -311,7 +311,7 @@ static void Process_printTime(RichString* str, unsigned long long t) {
double jiffytime = 1.0 / jiffy; double jiffytime = 1.0 / jiffy;
double realTime = t * jiffytime; double realTime = t * jiffytime;
int iRealTime = (int) realTime; unsigned long long iRealTime = (unsigned long long) realTime;
unsigned long long hours = iRealTime / 3600; unsigned long long hours = iRealTime / 3600;
int minutes = (iRealTime / 60) % 60; int minutes = (iRealTime / 60) % 60;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment