mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Fix minor formatting bug that pre-commit missed
This commit is contained in:
parent
5a3dee2562
commit
cc9a166c8b
1 changed files with 2 additions and 1 deletions
|
@ -1417,7 +1417,8 @@ double DNS_Mgr::GetNextTimeout()
|
|||
|
||||
struct timeval* tvp = ares_timeout(channel, &tv, &tv);
|
||||
|
||||
return run_state::network_time + static_cast<double>(tvp->tv_sec) + (static_cast<double>(tvp->tv_usec) / 1e6);
|
||||
return run_state::network_time + static_cast<double>(tvp->tv_sec) +
|
||||
(static_cast<double>(tvp->tv_usec) / 1e6);
|
||||
}
|
||||
|
||||
void DNS_Mgr::ProcessFd(int fd, int flags)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue