diff options
Diffstat (limited to 'console-tools/chvt.c')
-rw-r--r-- | console-tools/chvt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console-tools/chvt.c b/console-tools/chvt.c index c76e9c780..8136f1c15 100644 --- a/console-tools/chvt.c +++ b/console-tools/chvt.c | |||
@@ -24,7 +24,7 @@ int chvt_main(int argc, char **argv) | |||
24 | 24 | ||
25 | if ((argc != 2) || (**(argv + 1) == '-')) | 25 | if ((argc != 2) || (**(argv + 1) == '-')) |
26 | show_usage(); | 26 | show_usage(); |
27 | fd = get_console_fd("/dev/console"); | 27 | fd = get_console_fd(); |
28 | num = atoi(argv[1]); | 28 | num = atoi(argv[1]); |
29 | if (ioctl(fd, VT_ACTIVATE, num)) | 29 | if (ioctl(fd, VT_ACTIVATE, num)) |
30 | perror_msg_and_die("VT_ACTIVATE"); | 30 | perror_msg_and_die("VT_ACTIVATE"); |