diff options
Diffstat (limited to 'lib/libncurses/lib_doupdate.c')
-rw-r--r-- | lib/libncurses/lib_doupdate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libncurses/lib_doupdate.c b/lib/libncurses/lib_doupdate.c index 9ef3667..fcab8e5 100644 --- a/lib/libncurses/lib_doupdate.c +++ b/lib/libncurses/lib_doupdate.c @@ -95,7 +95,7 @@ static inline void GoTo(int row, int col) SP->_curscol = col; } -int _outch(char ch) +int _outch(int ch) { if (SP != NULL) putc(ch, SP->_ofp); @@ -183,7 +183,7 @@ sigaction_t act, oact; static int move_right_cost = -1; -static int countc(char c) +static int countc(int c) { return(move_right_cost++); } |