aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_timing_timerfd.c
diff options
context:
space:
mode:
authortwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-20 00:06:46 +0000
committertwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-20 00:06:46 +0000
commitf34073de7e10e6b9d49b7f33b9e4c5cc5bf445ac (patch)
treed7cc0fe126eee3a2eeecb658fba6b07a57ea3670 /res/res_timing_timerfd.c
parent5f6cfbd6afaaf34e3872a64ebda7a9d0c344f18a (diff)
Fix compiling
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@157973 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_timing_timerfd.c')
-rw-r--r--res/res_timing_timerfd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_timing_timerfd.c b/res/res_timing_timerfd.c
index 4f419174c..d79b63d38 100644
--- a/res/res_timing_timerfd.c
+++ b/res/res_timing_timerfd.c
@@ -166,7 +166,7 @@ static int timerfd_timer_enable_continuous(int handle)
{
int res;
struct itimerspec continuous_timer = {
- .it_value.tv_nsec = 1L;
+ .it_value.tv_nsec = 1L,
};
struct timerfd_timer *our_timer, find_helper = {
.handle = handle,