diff options
author | Denis Vlasenko | 2007-10-29 19:52:21 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-10-29 19:52:21 +0000 |
commit | 968dbf9685670f852af63d8ae817ea26e7a5e528 (patch) | |
tree | d6a6cd4614cc7ef97baded7f66986c2414145d63 /console-tools/deallocvt.c | |
parent | dfc0740b044cad91100bae35fa060b31a88f40ce (diff) | |
download | busybox-968dbf9685670f852af63d8ae817ea26e7a5e528.zip busybox-968dbf9685670f852af63d8ae817ea26e7a5e528.tar.gz |
minor fix in comment, no code changes
Diffstat (limited to 'console-tools/deallocvt.c')
-rw-r--r-- | console-tools/deallocvt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console-tools/deallocvt.c b/console-tools/deallocvt.c index 48783fb..1172245 100644 --- a/console-tools/deallocvt.c +++ b/console-tools/deallocvt.c @@ -31,7 +31,7 @@ int deallocvt_main(int argc, char **argv) bb_show_usage(); } - /* double cast suppresses "cast to ptr from int of different size */ + /* double cast suppresses "cast to ptr from int of different size" */ xioctl(get_console_fd(), VT_DISALLOCATE, (void *)(ptrdiff_t)num); return EXIT_SUCCESS; } |