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:
parent
58e3a119e5
commit
1ac3735c5f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user