aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-25 17:27:36 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-25 17:27:36 +0000
commitea032696e61ce3822587bc7d49a36c44670057f1 (patch)
tree0815a88f4006b9d7036530afdc7eff5106dbc99f /channel.c
parentc8309d217df93bc5da4e190ca265108166868577 (diff)
get rid of a warning
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6189 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 71c6c8581..e68f4326d 100755
--- a/channel.c
+++ b/channel.c
@@ -1120,7 +1120,7 @@ int ast_activate_generator(struct ast_channel *chan, struct ast_generator *gen,
int ast_waitfor_n_fd(int *fds, int n, int *ms, int *exception)
{
/* Wait for x amount of time on a file descriptor to have input. */
- struct timeval start;
+ struct timeval start = { 0 , 0 };
int res;
int x, y;
int winner = -1;