aboutsummaryrefslogtreecommitdiffstats
path: root/main/term.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/term.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/term.c')
-rw-r--r--main/term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/term.c b/main/term.c
index 940396ee3..d051338d8 100644
--- a/main/term.c
+++ b/main/term.c
@@ -43,7 +43,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/lock.h"
#include "asterisk/utils.h"
-static int vt100compat = 0;
+static int vt100compat;
static char prepdata[80] = "";
static char enddata[80] = "";