From: Jim Meyering Date: Wed, 17 Jan 1996 17:20:41 +0000 (+0000) Subject: (visible): Change parameter type to unsigned int from unsigned char. X-Git-Tag: TEXTUTILS-1_14~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a0d3143dd87c9ad68dc9611599c203e1b8d6bdd;p=thirdparty%2Fcoreutils.git (visible): Change parameter type to unsigned int from unsigned char. --- diff --git a/src/stty.c b/src/stty.c index 46ec3afdd8..9907ecb992 100644 --- a/src/stty.c +++ b/src/stty.c @@ -380,7 +380,7 @@ static struct control_info control_info[] = {NULL, 0, 0} }; -static const char *visible __P ((unsigned char ch)); +static const char *visible __P ((unsigned int ch)); static unsigned long baud_to_value __P ((speed_t speed)); static int recover_mode __P ((char *arg, struct termios *mode)); static int screen_columns __P ((void)); @@ -1600,7 +1600,7 @@ sane_mode (struct termios *mode) /* Adapted from `cat' by Torbjorn Granlund. */ static const char * -visible (unsigned char ch) +visible (unsigned int ch) { static char buf[10]; char *bpout = buf;