Change type of 'chr' argument in terminfo_repeat/term_addch to 'char'.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4795 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2008-04-04 08:41:44 +00:00 committed by exg
commit 2f13aacf43
5 changed files with 6 additions and 6 deletions

View file

@ -289,13 +289,13 @@ static void _clrtoeol(TERM_REC *term)
}
/* Repeat character (rep / rp) */
static void _repeat(TERM_REC *term, int chr, int count)
static void _repeat(TERM_REC *term, char chr, int count)
{
tput(tparm(term->TI_rep, chr, count));
}
/* Repeat character (manual) */
static void _repeat_manual(TERM_REC *term, int chr, int count)
static void _repeat_manual(TERM_REC *term, char chr, int count)
{
while (count > 0) {
putc(chr, term->out);