Wrong Return Value in DC_TimeToSec
Posted: Sat Feb 06, 2021 11:41 am
Hi Roger!
I have found a wrong return value in Function DC_TimeToSec() in _dccalen.prg
was: wrong!
RETURN (nHours * 60 * 24) + (nMinutes * 60) + nSeconds
is: right!
RETURN (nHours * 60 * 60) + (nMinutes * 60) + nSeconds
please edit for the future !

I have found a wrong return value in Function DC_TimeToSec() in _dccalen.prg
was: wrong!
RETURN (nHours * 60 * 24) + (nMinutes * 60) + nSeconds
is: right!
RETURN (nHours * 60 * 60) + (nMinutes * 60) + nSeconds
please edit for the future !
