diff options
Diffstat (limited to 'console-tools/chvt.c')
-rw-r--r-- | console-tools/chvt.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/console-tools/chvt.c b/console-tools/chvt.c index 3398892f5..b1a429eb3 100644 --- a/console-tools/chvt.c +++ b/console-tools/chvt.c @@ -42,11 +42,9 @@ int chvt_main(int argc, char **argv) fd = get_console_fd(); num = bb_xgetlarg(argv[1], 10, 0, INT_MAX); - if (ioctl(fd, VT_ACTIVATE, num)) { - bb_perror_msg_and_die("VT_ACTIVATE"); - } - if (ioctl(fd, VT_WAITACTIVE, num)) { - bb_perror_msg_and_die("VT_WAITACTIVE"); + if((-1 == ioctl(fd, VT_ACTIVATE, num)) || + (-1 == ioctl(fd, VT_WAITACTIVE, num))) { + bb_perror_msg_and_die("ioctl"); } return EXIT_SUCCESS; } |