aboutsummaryrefslogtreecommitdiffstats
path: root/timer.c
diff options
context:
space:
mode:
authormzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2010-02-06 23:51:27 +0000
committermzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2010-02-06 23:51:27 +0000
commit7a8ba6a1135800510b93621b78e6d0d3f53e0c2c (patch)
treee7f57a63f70e66e41f27bd3f8c43fe6c567d8f6c /timer.c
parentfd89168c6b1e62541f8aa683c6d03a1d19eba7e5 (diff)
downloadlcd4linux-7a8ba6a1135800510b93621b78e6d0d3f53e0c2c.tar.gz
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
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);
}