aboutsummaryrefslogtreecommitdiffhomepage
path: root/output.c
diff options
context:
space:
mode:
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;
}
-
}
}