From 36093d24f7bee1864ca45f5e6e9d6770ac966697 Mon Sep 17 00:00:00 2001
From: Russell Bryant <russell@russellbryant.com>
Date: Mon, 25 Jul 2005 17:27:36 +0000
Subject: [PATCH] get rid of a warning

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6189 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 channel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/channel.c b/channel.c
index 71c6c85812..e68f4326d2 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;
-- 
GitLab