commit | ead19306f5d6d5d5ef49165aa518e525de8e84b2 | [log] [tgz] |
---|---|---|
author | Rob Landley <rob@landley.net> | Fri Mar 10 23:16:25 2006 +0000 |
committer | Rob Landley <rob@landley.net> | Fri Mar 10 23:16:25 2006 +0000 |
tree | 50e2c88bee71b9c4da3b54f951d337c112a85c03 | |
parent | bc68cd14ccaebc17e7e03a08e51fddfb91007624 [diff] [blame] |
Cleanup patches from tito.
diff --git a/console-tools/chvt.c b/console-tools/chvt.c index 252aed7..cba5b40 100644 --- a/console-tools/chvt.c +++ b/console-tools/chvt.c
@@ -44,8 +44,8 @@ fd = get_console_fd(); num = bb_xgetlarg(argv[1], 10, 0, INT_MAX); - if((-1 == ioctl(fd, VT_ACTIVATE, num)) || - (-1 == ioctl(fd, VT_WAITACTIVE, num))) { + if ((-1 == ioctl(fd, VT_ACTIVATE, num)) + || (-1 == ioctl(fd, VT_WAITACTIVE, num))) { bb_perror_msg_and_die("ioctl"); } return EXIT_SUCCESS;