1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

compiler warning fix

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2509 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-02-17 18:05:25 +00:00 committed by cras
parent a38227e077
commit a543f63307

View File

@ -386,7 +386,7 @@ void term_addch(TERM_WINDOW *window, int chr)
static void term_addch_utf8(TERM_WINDOW *window, unichar chr) static void term_addch_utf8(TERM_WINDOW *window, unichar chr)
{ {
unsigned char buf[10]; char buf[10];
int i, len; int i, len;
len = utf16_char_to_utf8(chr, buf); len = utf16_char_to_utf8(chr, buf);