diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-11-20 15:57:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-11-20 15:57:40 +0000 |
commit | 4f6972189cef71aaa17867eaa30e35bdc4e97a15 (patch) | |
tree | dad2bd05062dc81035a3e195be822ef109896e60 /bin/stty | |
parent | ea7687edd3a315b9d1347e5334dfaaa35a4de83e (diff) |
KNF
Diffstat (limited to 'bin/stty')
-rw-r--r-- | bin/stty/key.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/stty/key.c b/bin/stty/key.c index b45d941eb08..3cae63d5c7a 100644 --- a/bin/stty/key.c +++ b/bin/stty/key.c @@ -1,4 +1,4 @@ -/* $OpenBSD: key.c,v 1.15 2015/02/11 12:36:40 deraadt Exp $ */ +/* $OpenBSD: key.c,v 1.16 2015/11/20 15:57:39 deraadt Exp $ */ /* $NetBSD: key.c,v 1.11 1995/09/07 06:57:11 jtc Exp $ */ /*- @@ -328,13 +328,13 @@ f_tty(struct info *ip) void f_ostart(struct info *ip) { - if (ioctl (ip->fd, TIOCSTART) < 0) + if (ioctl(ip->fd, TIOCSTART) < 0) err(1, "TIOCSTART"); } void f_ostop(struct info *ip) { - if (ioctl (ip->fd, TIOCSTOP) < 0) + if (ioctl(ip->fd, TIOCSTOP) < 0) err(1, "TIOCSTOP"); } |