mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
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:
parent
e8ae6d827d
commit
2f13aacf43
5 changed files with 6 additions and 6 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue