summaryrefslogtreecommitdiff
path: root/vchat-ui.c
diff options
context:
space:
mode:
authorerdgeist <>2006-01-28 14:17:17 +0000
committererdgeist <>2006-01-28 14:17:17 +0000
commit6e146d7f96bd7dd6f9799bc32c4ddf054c919e86 (patch)
tree653634a91d5dabf19a0bb2eb88958a8ff3b39867 /vchat-ui.c
parent53c6fc315ef01f5924fdfcc309d673d3a00d97a7 (diff)
stupid ncurses macros bug
Diffstat (limited to 'vchat-ui.c')
-rwxr-xr-xvchat-ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vchat-ui.c b/vchat-ui.c
index f23e8b1..dd8af8a 100755
--- a/vchat-ui.c
+++ b/vchat-ui.c
@@ -502,7 +502,7 @@ writescr ( WINDOW *win, struct sb_entry *entry ) {
502 } 502 }
503 } 503 }
504 /* plot character */ 504 /* plot character */
505 waddch( win, textbuffer[ i ]); 505 waddch( win, (unsigned char)textbuffer[ i ]);
506 } 506 }
507 507
508 /* restore old attributes */ 508 /* restore old attributes */