char can be unsigned, like on ARM and PowerPC. Unbreak the

build for those by propagating the type of character from
char to int.
This commit is contained in:
Marcel Moolenaar 2009-05-28 04:25:38 +00:00
parent 58e3a119e5
commit 1ac3735c5f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=192954

View file

@ -937,7 +937,7 @@ int temp_int;
int
out_char(window, character, column) /* output non-printing character */
WINDOW *window;
char character;
int character;
int column;
{
int i1, i2;
@ -985,7 +985,7 @@ int column;
int
len_char(character, column) /* return the length of the character */
char character;
int character;
int column; /* the column must be known to provide spacing for tabs */
{
int length;