From 80af1153bcea49c045c66944677b31d1c90b1afe Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 27 Jul 2005 22:19:49 +0000 Subject: [PATCH] fix warning git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6236 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channel.c b/channel.c index 490144f8fc..2af7f4af2a 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;