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

@ -30,7 +30,7 @@ struct _TERM_REC {
void (*clear)(TERM_REC *term);
void (*clrtoeol)(TERM_REC *term);
void (*repeat)(TERM_REC *term, int chr, int count);
void (*repeat)(TERM_REC *term, char chr, int count);
void (*set_fg)(TERM_REC *term, int color);
void (*set_bg)(TERM_REC *term, int color);