aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-27 22:19:49 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-27 22:19:49 +0000
commite273ab76f0c92841effbb975fa1c1dac81bd9344 (patch)
treef78d8a299f133fc1ee3a2681896825a3af7123ef /channel.c
parentb0d3b6a03575adcb353472c230c7bd4d14342dc6 (diff)
fix warning
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6236 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 490144f8f..2af7f4af2 100755
--- a/channel.c
+++ b/channel.c
@@ -1187,7 +1187,7 @@ int ast_waitfor_n_fd(int *fds, int n, int *ms, int *exception)
struct ast_channel *ast_waitfor_nandfds(struct ast_channel **c, int n, int *fds, int nfds,
int *exception, int *outfd, int *ms)
{
- struct timeval start;
+ struct timeval start = { 0 , 0 };
struct pollfd *pfds;
int res;
long rms;