mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Small consistency bug: remove named function attribute.
Everywhere in <sys/ttydisc.h> we don't specify a function argument name, except in a single place. Also remove it there.
This commit is contained in:
parent
6f5c443661
commit
a56f84cf2c
1 changed files with 1 additions and 1 deletions
|
|
@ -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(). */
|
||||
|
|
|
|||
Loading…
Reference in a new issue