summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMartin Pycko <martinp@digium.com>2003-05-16 21:33:32 +0000
committerMartin Pycko <martinp@digium.com>2003-05-16 21:33:32 +0000
commite7b50567692bf8f2bc7bb85707b4bd543222a1a5 (patch)
tree135a5620fc0b825deda3ce09334cbafc51c5cfe6 /channels
parent0ceeeafa41d68423f06e09e7be25e272abf0b4fd (diff)
Fix the compiling warning with 'int chan'
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1032 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rwxr-xr-xchannels/chan_zap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index a1019ec7a..af6454a90 100755
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -5349,7 +5349,7 @@ static void *pri_dchannel(void *vpri)
fd_set efds;
fd_set rfds;
int res;
- int chan;
+ int chan = 0;
int x;
int haveidles;
int activeidles;