diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-29 19:52:21 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-29 19:52:21 +0000 |
commit | 968dbf9685670f852af63d8ae817ea26e7a5e528 (patch) | |
tree | d6a6cd4614cc7ef97baded7f66986c2414145d63 /console-tools/chvt.c | |
parent | dfc0740b044cad91100bae35fa060b31a88f40ce (diff) | |
download | busybox-w32-968dbf9685670f852af63d8ae817ea26e7a5e528.tar.gz busybox-w32-968dbf9685670f852af63d8ae817ea26e7a5e528.tar.bz2 busybox-w32-968dbf9685670f852af63d8ae817ea26e7a5e528.zip |
minor fix in comment, no code changes
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; |