summaryrefslogtreecommitdiffstats
path: root/sys/teken
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2009-09-12 10:41:32 +0000
committered <ed@FreeBSD.org>2009-09-12 10:41:32 +0000
commite0831cf5d0a0f960d8518c8d799dada4d6c332ae (patch)
treed1310fd5cf668820643ec9f8034123d2269413ef /sys/teken
parent5e016d112434ef187468b8a8166e7872fbc23ab6 (diff)
downloadFreeBSD-src-e0831cf5d0a0f960d8518c8d799dada4d6c332ae.zip
FreeBSD-src-e0831cf5d0a0f960d8518c8d799dada4d6c332ae.tar.gz
Small style(9) bug introduced in the previous commit.
Diffstat (limited to 'sys/teken')
-rw-r--r--sys/teken/teken.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/teken/teken.c b/sys/teken/teken.c
index 05e5064..92a81f1 100644
--- a/sys/teken/teken.c
+++ b/sys/teken/teken.c
@@ -245,8 +245,8 @@ teken_input_byte(teken_t *t, unsigned char c)
/*
* UTF-8 handling.
*/
- if (t->t_utf8_left == -1) {
- /* UTF-8 disabled. */
+ if (t->t_utf8_left == -1) {
+ /* UTF-8 disabled. */
teken_input_char(t, c);
} else if ((c & 0x80) == 0x00) {
/* One-byte sequence. */
OpenPOWER on IntegriCloud