aboutsummaryrefslogtreecommitdiffhomepage
path: root/output.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-02-25 12:21:39 +1000
committerGravatar axel <axel@liljencrantz.se>2006-02-25 12:21:39 +1000
commitfd6bf06f153157b8603f816276fc04fd34337286 (patch)
tree8c2d95e5f3869a01efd578933581dc6192ccaa17 /output.c
parentd2e11ea61d23e8c12f2601c48781617f07d4b46e (diff)
Various minor edits
darcs-hash:20060225022139-ac50b-9ef43f88e2266978e9b39038a6a5087ff1305509.gz
Diffstat (limited to 'output.c')
-rw-r--r--output.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/output.c b/output.c
index 0aea80c4..9c9c8713 100644
--- a/output.c
+++ b/output.c
@@ -313,7 +313,7 @@ int writech( wint_t ch )
if( ( ch >= ENCODE_DIRECT_BASE) &&
( ch < ENCODE_DIRECT_BASE+256) )
{
- buff[0] = ch- ENCODE_DIRECT_BASE;
+ buff[0] = ch - ENCODE_DIRECT_BASE;
bytes=1;
}
else
@@ -327,7 +327,6 @@ int writech( wint_t ch )
{
return 1;
}
-
}
}