From 5e666eb3956297c89f638b0cc0aa15e68d94da3b Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sat, 12 Sep 2009 10:41:32 +0000 Subject: [PATCH] Small style(9) bug introduced in the previous commit. --- sys/teken/teken.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/teken/teken.c b/sys/teken/teken.c index 05e50645783..92a81f1d76b 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. */ -- 2.45.2