mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:54:58 +00:00
Utilities: Use lround() instead of casting round() to long
And one case where we previously cast to int, since the extra precision does not matter.
This commit is contained in:
parent
f2ae25deee
commit
b3cd91d26d
3 changed files with 3 additions and 3 deletions
|
@ -306,7 +306,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
outln("Offset: {}", offset_s);
|
||||
|
||||
if (adjust_time) {
|
||||
long delta_us = static_cast<long>(round(offset_s * 1'000'000));
|
||||
long delta_us = lround(offset_s * 1'000'000);
|
||||
timeval delta_timeval;
|
||||
delta_timeval.tv_sec = delta_us / 1'000'000;
|
||||
delta_timeval.tv_usec = delta_us % 1'000'000;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue