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 /ar.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 'ar.c')
-rw-r--r-- | ar.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -65,9 +65,9 @@ extern ar_headers_t get_headers(int srcFd) | |||
65 | 65 | ||
66 | /* check ar magic */ | 66 | /* check ar magic */ |
67 | if (full_read(srcFd, ar_magic, 8) != 8) | 67 | if (full_read(srcFd, ar_magic, 8) != 8) |
68 | error_msg_and_die("cannot read magic\n"); | 68 | error_msg_and_die("cannot read magic"); |
69 | if (strncmp(ar_magic,"!<arch>",7) != 0) | 69 | if (strncmp(ar_magic,"!<arch>",7) != 0) |
70 | error_msg_and_die("invalid magic\n"); | 70 | error_msg_and_die("invalid magic"); |
71 | 71 | ||
72 | while (full_read(srcFd, (char *) &raw_ar_header, 60)==60) { | 72 | while (full_read(srcFd, (char *) &raw_ar_header, 60)==60) { |
73 | /* check the end of header markers are valid */ | 73 | /* check the end of header markers are valid */ |
@@ -168,7 +168,7 @@ extern int ar_main(int argc, char **argv) | |||
168 | usage(ar_usage); | 168 | usage(ar_usage); |
169 | 169 | ||
170 | if ( (srcFd = open(argv[optind], O_RDONLY)) < 0) | 170 | if ( (srcFd = open(argv[optind], O_RDONLY)) < 0) |
171 | error_msg_and_die("Cannot read %s\n", argv[optind]); | 171 | error_msg_and_die("Cannot read %s", argv[optind]); |
172 | 172 | ||
173 | optind++; | 173 | optind++; |
174 | head = get_headers(srcFd); | 174 | head = get_headers(srcFd); |