Date: Sat, 12 Sep 2009 10:41:32 +0000 (UTC) From: Ed Schouten <ed@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r197116 - head/sys/teken Message-ID: <200909121041.n8CAfWFm082139@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ed Date: Sat Sep 12 10:41:32 2009 New Revision: 197116 URL: http://svn.freebsd.org/changeset/base/197116 Log: Small style(9) bug introduced in the previous commit. Modified: head/sys/teken/teken.c Modified: head/sys/teken/teken.c ============================================================================== --- head/sys/teken/teken.c Sat Sep 12 10:34:34 2009 (r197115) +++ head/sys/teken/teken.c Sat Sep 12 10:41:32 2009 (r197116) @@ -245,8 +245,8 @@ teken_input_byte(teken_t *t, unsigned ch /* * 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. */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200909121041.n8CAfWFm082139>