Skip to content
Snippets Groups Projects
Commit ef4050f8 authored by Daniel Reinert's avatar Daniel Reinert :grimacing:
Browse files

apply fix suggested by Sergey

parent 6aded507
No related branches found
No related tags found
No related merge requests found
Pipeline #34749 failed
......@@ -104,7 +104,8 @@ secofday_decode(double secondOfDay)
{
CdiTime time;
const int fullSeconds = (int) secondOfDay;
// const int fullSeconds = (int) secondOfDay;
const int fullSeconds = (long) secondOfDay;
time.ms = (int) lround((secondOfDay - fullSeconds) * 1000);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment