diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-04-29 17:50:52 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-04-29 17:50:52 +0000 |
commit | f0a716f48414c3dc6cc454b3fb09ead70f1e478d (patch) | |
tree | fd09147dd2106cdc34f994b799e478082f5ae60a /tty.c | |
parent | cd214f8f6a6f9cdb8406bdc972e4c181ce6ba550 (diff) | |
download | rtmux-f0a716f48414c3dc6cc454b3fb09ead70f1e478d.tar.gz rtmux-f0a716f48414c3dc6cc454b3fb09ead70f1e478d.tar.bz2 rtmux-f0a716f48414c3dc6cc454b3fb09ead70f1e478d.zip |
Use a u_char so top-bit-set update the cursor as well.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tty.c,v 1.93 2009-04-29 17:06:45 nicm Exp $ */ +/* $Id: tty.c,v 1.94 2009-04-29 17:50:52 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -306,7 +306,7 @@ tty_puts(struct tty *tty, const char *s) } void -tty_putc(struct tty *tty, char ch) +tty_putc(struct tty *tty, u_char ch) { u_int sx; |