diff options
author | Matt Kraai <kraai@debian.org> | 2001-01-31 19:00:21 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-01-31 19:00:21 +0000 |
commit | dd19c6990496023fe23fefef8f1798740f7d39c6 (patch) | |
tree | 3933adefa4171173db78fa2389146ac89f4edb86 /deallocvt.c | |
parent | 63ec2732454a0c973305794e185e488106f6b282 (diff) | |
download | busybox-w32-dd19c6990496023fe23fefef8f1798740f7d39c6.tar.gz busybox-w32-dd19c6990496023fe23fefef8f1798740f7d39c6.tar.bz2 busybox-w32-dd19c6990496023fe23fefef8f1798740f7d39c6.zip |
Removed trailing \n from error_msg{,_and_die} messages.
Diffstat (limited to 'deallocvt.c')
-rw-r--r-- | deallocvt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deallocvt.c b/deallocvt.c index fad7a2bb2..b51fbaef4 100644 --- a/deallocvt.c +++ b/deallocvt.c | |||
@@ -31,9 +31,9 @@ int deallocvt_main(int argc, char *argv[]) | |||
31 | for (i = 1; i < argc; i++) { | 31 | for (i = 1; i < argc; i++) { |
32 | num = atoi(argv[i]); | 32 | num = atoi(argv[i]); |
33 | if (num == 0) | 33 | if (num == 0) |
34 | error_msg("0: illegal VT number\n"); | 34 | error_msg("0: illegal VT number"); |
35 | else if (num == 1) | 35 | else if (num == 1) |
36 | error_msg("VT 1 cannot be deallocated\n"); | 36 | error_msg("VT 1 cannot be deallocated"); |
37 | else if (ioctl(fd, VT_DISALLOCATE, num)) | 37 | else if (ioctl(fd, VT_DISALLOCATE, num)) |
38 | perror_msg_and_die("VT_DISALLOCATE"); | 38 | perror_msg_and_die("VT_DISALLOCATE"); |
39 | } | 39 | } |