diff options
-rw-r--r-- | lib/tevent/tevent_timed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tevent/tevent_timed.c b/lib/tevent/tevent_timed.c index d75653d847..cc51bf60d5 100644 --- a/lib/tevent/tevent_timed.c +++ b/lib/tevent/tevent_timed.c @@ -114,7 +114,7 @@ struct timeval tevent_timeval_add(const struct timeval *tv, uint32_t secs, tv2.tv_sec += secs; tv2.tv_usec += usecs; tv2.tv_sec += tv2.tv_usec / 1000000; - tv2.tv_usec += tv2.tv_usec % 1000000; + tv2.tv_usec = tv2.tv_usec % 1000000; return tv2; } |