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 8390c6001..ea96d1360 100644 --- a/console-tools/chvt.c +++ b/console-tools/chvt.c | |||
@@ -26,7 +26,7 @@ int chvt_main(int argc, char **argv) | |||
26 | 26 | ||
27 | fd = get_console_fd(); | 27 | fd = get_console_fd(); |
28 | num = xatou_range(argv[1], 1, 63); | 28 | num = xatou_range(argv[1], 1, 63); |
29 | /* double cast suppresses "cast to ptr from int of different size */ | 29 | /* double cast suppresses "cast to ptr from int of different size" */ |
30 | xioctl(fd, VT_ACTIVATE, (void *)(ptrdiff_t)num); | 30 | xioctl(fd, VT_ACTIVATE, (void *)(ptrdiff_t)num); |
31 | xioctl(fd, VT_WAITACTIVE, (void *)(ptrdiff_t)num); | 31 | xioctl(fd, VT_WAITACTIVE, (void *)(ptrdiff_t)num); |
32 | return EXIT_SUCCESS; | 32 | return EXIT_SUCCESS; |