aboutsummaryrefslogtreecommitdiffstats
path: root/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'timer.c')
-rw-r--r--timer.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/timer.c b/timer.c
index a38b76b..dfdb6e8 100644
--- a/timer.c
+++ b/timer.c
@@ -77,9 +77,10 @@ int nTimers = 0;
static void timer_inc(struct timeval *tv, const int msec)
{
- struct timeval diff;
- diff.tv_sec = msec / 1000;
- diff.tv_usec = (msec % 1000) * 1000;
+ struct timeval diff = {
+ .tv_sec = msec / 1000,
+ .tv_usec = (msec % 1000) * 1000
+ };
timeradd(tv, &diff, tv);
}