diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-08-28 19:48:30 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-08-28 19:48:30 +0000 |
commit | 8f8f2459efa7c6933d76e462a88a661495e599f7 (patch) | |
tree | fee1f6a9119c450d252816de340ec8455d88f441 /usr.bin/mg/tty.c | |
parent | f5da7a593b442620befbef606f304885951d7169 (diff) |
ANSIfication uncovers function argument bugs. How unusual.
Diffstat (limited to 'usr.bin/mg/tty.c')
-rw-r--r-- | usr.bin/mg/tty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/tty.c b/usr.bin/mg/tty.c index 6e13e77b2e2..407751d5bad 100644 --- a/usr.bin/mg/tty.c +++ b/usr.bin/mg/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.18 2002/08/23 18:43:49 vincent Exp $ */ +/* $OpenBSD: tty.c,v 1.19 2002/08/28 19:48:29 art Exp $ */ /* * Terminfo display driver @@ -430,7 +430,7 @@ ttresize(void) */ /* ARGSUSED */ static int -fakec(char c) +fakec(int c) { cci++; return 0; |