diff options
-rw-r--r-- | sys/kern/tty_compat.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/kern/tty_compat.c b/sys/kern/tty_compat.c index 8a4545c64e3f..b61e05859f93 100644 --- a/sys/kern/tty_compat.c +++ b/sys/kern/tty_compat.c @@ -262,9 +262,11 @@ tty_ioctl_compat(struct tty *tp, u_long com, caddr_t data, int fflag, fflag, td)); } - case OTIOCCONS: - *(int *)data = 1; - return (tty_ioctl(tp, TIOCCONS, data, fflag, td)); + case OTIOCCONS: { + int one = 1; + + return (tty_ioctl(tp, TIOCCONS, (caddr_t)&one, fflag, td)); + } default: return (ENOIOCTL); |