aboutsummaryrefslogtreecommitdiffstats
path: root/main/term.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-06 00:14:32 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-06 00:14:32 +0000
commitf9f33f16fbad3c7f228791cb1f4e38b4d73ced73 (patch)
tree629fd8245dca6f6351b5dcf9560420dfb221655e /main/term.c
parentc7864bc14b10cc91805378e278f007019dfc7187 (diff)
Merged revisions 105840 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r105840 | tilghman | 2008-03-04 17:04:29 -0600 (Tue, 04 Mar 2008) | 2 lines Whitespace changes only ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@106306 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/term.c')
-rw-r--r--main/term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/term.c b/main/term.c
index ea005aa31..260637930 100644
--- a/main/term.c
+++ b/main/term.c
@@ -53,7 +53,7 @@ static const char *termpath[] = {
/* Ripped off from Ross Ridge, but it's public domain code (libmytinfo) */
static short convshort(char *s)
{
- register int a,b;
+ register int a, b;
a = (int) s[0] & 0377;
b = (int) s[1] & 0377;
@@ -143,7 +143,7 @@ int ast_term_init(void)
char *term_color(char *outbuf, const char *inbuf, int fgcolor, int bgcolor, int maxout)
{
- int attr=0;
+ int attr = 0;
char tmp[40];
if (!vt100compat) {
ast_copy_string(outbuf, inbuf, maxout);