diff options
Diffstat (limited to '')
-rw-r--r-- | src/output/tcpcli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/tcpcli.c b/src/output/tcpcli.c index df1a73c..9d76a03 100644 --- a/src/output/tcpcli.c +++ b/src/output/tcpcli.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2023, OARC, Inc. + * Copyright (c) 2018-2024 OARC, Inc. * All rights reserved. * * This file is part of dnsjit. @@ -270,7 +270,7 @@ static const core_object_t* _produce(output_tcpcli_t* self) p.fd = self->fd; p.events = POLLIN; p.revents = 0; - to = (self->timeout.sec * 1e3) + (self->timeout.nsec / 1e6); //NOSONAR + to = (self->timeout.sec * 1e3) + (self->timeout.nsec / 1e6); // NOSONAR if (!to) { to = 1; } |