]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(visible): Change parameter type to unsigned int from unsigned char.
authorJim Meyering <jim@meyering.net>
Wed, 17 Jan 1996 17:20:41 +0000 (17:20 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 17 Jan 1996 17:20:41 +0000 (17:20 +0000)
src/stty.c

index 46ec3afdd8c0ff97327ed106b53ff250f711e622..9907ecb9923121efdf5c4b6dcad2249effb5643e 100644 (file)
@@ -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;