Fix a nasty cast issue that my compiler was choking on.
This commit is contained in:
parent
1266cec2fe
commit
7e8481afd1
@ -2589,7 +2589,11 @@ double app_tminterval(int stop,int usertime)
|
||||
if (usertime) now = rus.tms_utime;
|
||||
|
||||
if (stop==TM_START) tmstart = now;
|
||||
else ret = (now - tmstart)/(double)sysconf(_SC_CLK_TCK);
|
||||
else
|
||||
{
|
||||
long int tck = sysconf(_SC_CLK_TCK);
|
||||
ret = (now - tmstart)/(double)tck;
|
||||
}
|
||||
|
||||
return (ret);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user