From 2a0d3143dd87c9ad68dc9611599c203e1b8d6bdd Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 17 Jan 1996 17:20:41 +0000 Subject: [PATCH] (visible): Change parameter type to unsigned int from unsigned char. --- src/stty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.3