aboutsummaryrefslogtreecommitdiffstats
path: root/main/channel.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-27 22:06:56 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-27 22:06:56 +0000
commitbec31308c06801ff6170b9bdbed27cb7c3dcfb9c (patch)
tree3630ee5a0a14ae6ee9a94c42beda6054b5bb0e65 /main/channel.c
parentb92384e18833f481cdf28dea1988346ff83a841b (diff)
since these variables all have static duration, none of them need initializers (they default to zero anyway)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@49006 f38db490-d61c-443f-a65b-d21fe96a405b
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 95293d661..18a5b7805 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, state2str_threadbuf_init);
#define STATE2STR_BUFSIZE 32