From 7a8ba6a1135800510b93621b78e6d0d3f53e0c2c Mon Sep 17 00:00:00 2001 From: mzuther Date: Sat, 6 Feb 2010 23:51:27 +0000 Subject: timer.c: I had forgotten how to initialize a "struct" :) git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1104 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- timer.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'timer.c') 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); } -- cgit v1.2.3