Skip to content
Snippets Groups Projects
Commit bd983289 authored by Gary E. Miller's avatar Gary E. Miller :speech_balloon:
Browse files

adj_time: don't add rounding fudge twice...

Thanks to Achim Gratz for spotting this.
parent 90d39498
No related branches found
No related tags found
Loading
......@@ -323,7 +323,7 @@ step_systime(
struct timespec ofs_ts; /* desired offset as teimspec */
/* get the complete jump distance as timespec */
ofs_ts = d_to_tspec(step + sys_residual + 0.5e-9);
ofs_ts = d_to_tspec(step + sys_residual);
/* ---> time-critical path starts ---> */
......
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