aboutsummaryrefslogtreecommitdiff
path: root/archival/libunarchive
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-06 19:02:46 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-06 19:02:46 +0000
commit6d655be5df5a559253a3769f294a6255535ad3fd (patch)
tree4342fd4f88b84459ef5c2c2c2c6fb86863a7112f /archival/libunarchive
parent3538b9a8822421b7c8596a33a917dcf2f99c92b7 (diff)
downloadbusybox-w32-6d655be5df5a559253a3769f294a6255535ad3fd.tar.gz
busybox-w32-6d655be5df5a559253a3769f294a6255535ad3fd.tar.bz2
busybox-w32-6d655be5df5a559253a3769f294a6255535ad3fd.zip
removed a lot of trailing \n in bb_msg() calls. It is added
automatically by function itself.
Diffstat (limited to 'archival/libunarchive')
-rw-r--r--archival/libunarchive/decompress_unzip.c2
-rw-r--r--archival/libunarchive/get_header_cpio.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c
index 7362da8c2..c0203cc4a 100644
--- a/archival/libunarchive/decompress_unzip.c
+++ b/archival/libunarchive/decompress_unzip.c
@@ -770,7 +770,7 @@ static int inflate_block(int *e)
770 } 770 }
771 default: 771 default:
772 /* bad block type */ 772 /* bad block type */
773 bb_error_msg_and_die("bad block type %d\n", t); 773 bb_error_msg_and_die("bad block type %d", t);
774 } 774 }
775} 775}
776 776
diff --git a/archival/libunarchive/get_header_cpio.c b/archival/libunarchive/get_header_cpio.c
index d405d0e1b..bc766c6aa 100644
--- a/archival/libunarchive/get_header_cpio.c
+++ b/archival/libunarchive/get_header_cpio.c
@@ -31,7 +31,7 @@ char get_header_cpio(archive_handle_t *archive_handle)
31 oldtmp = NULL; 31 oldtmp = NULL;
32 32
33 while (tmp) { 33 while (tmp) {
34 bb_error_msg_and_die("need to fix this\n"); 34 bb_error_msg_and_die("need to fix this");
35 if (tmp->entry->link_name) { /* Found a hardlink ready to be extracted */ 35 if (tmp->entry->link_name) { /* Found a hardlink ready to be extracted */
36 file_header = tmp->entry; 36 file_header = tmp->entry;
37 if (oldtmp) { 37 if (oldtmp) {