summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-07-27 22:19:49 +0000
committerRussell Bryant <russell@russellbryant.com>2005-07-27 22:19:49 +0000
commit80af1153bcea49c045c66944677b31d1c90b1afe (patch)
treef78d8a299f133fc1ee3a2681896825a3af7123ef /channel.c
parent5196d605387a91e664d173ee74f1ba0b48f3c866 (diff)
fix warning
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6236 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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;