summaryrefslogtreecommitdiff
path: root/main/channel.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-12-27 22:14:33 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-12-27 22:14:33 +0000
commitadca0ff14bbecf8e65aec48956ce28690debdeaf (patch)
treee9add4fc02f476def2f55761228016937b1df512 /main/channel.c
parentd7b0ec86468d98bf143b320b89d3fbe206e4ba54 (diff)
Merged revisions 49006 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r49006 | kpfleming | 2006-12-27 16:06:56 -0600 (Wed, 27 Dec 2006) | 2 lines since these variables all have static duration, none of them need initializers (they default to zero anyway) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@49008 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/channel.c b/main/channel.c
index cb31be81a..79e400ece 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -95,11 +95,11 @@ struct ast_channel_whisper_buffer {
#endif
/*! Prevent new channel allocation if shutting down. */
-static int shutting_down = 0;
+static int shutting_down;
-static int uniqueint = 0;
+static int uniqueint;
-unsigned long global_fin = 0, global_fout = 0;
+unsigned long global_fin, global_fout;
AST_THREADSTORAGE(state2str_threadbuf);
#define STATE2STR_BUFSIZE 32