From a56f84cf2c81cfe58094f5a08cb3739db73c205f Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Wed, 17 Sep 2008 13:59:05 +0000 Subject: [PATCH] Small consistency bug: remove named function attribute. Everywhere in we don't specify a function argument name, except in a single place. Also remove it there. --- sys/sys/ttydisc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/ttydisc.h b/sys/sys/ttydisc.h index f74b7cf5866..104fb4e924f 100644 --- a/sys/sys/ttydisc.h +++ b/sys/sys/ttydisc.h @@ -54,7 +54,7 @@ void ttydisc_modem(struct tty *, int); int ttydisc_rint(struct tty *, char, int); size_t ttydisc_rint_bypass(struct tty *, char *, size_t); void ttydisc_rint_done(struct tty *); -size_t ttydisc_getc(struct tty *, void *buf, size_t); +size_t ttydisc_getc(struct tty *, void *, size_t); int ttydisc_getc_uio(struct tty *, struct uio *); /* Error codes for ttydisc_rint(). */