aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-05 05:07:39 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-05 05:07:39 +0000
commit85d8708df8c31feb766348a0772cc0c652765aa5 (patch)
treeb16c9e46f30d78cc171f3dd52b7254c598a7b00b /channel.c
parent7e68abc1d7be300ba8384a83aa274fe2211760b2 (diff)
suppress a compiler warning about the usage of a potentially uninitialized variable
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@38903 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rw-r--r--channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index efc099b0d..830def796 100644
--- a/channel.c
+++ b/channel.c
@@ -3440,7 +3440,7 @@ enum ast_bridge_result ast_channel_bridge(struct ast_channel *c0, struct ast_cha
}
for (/* ever */;;) {
- struct timeval now;
+ struct timeval now = { 0, };
int to;
to = -1;