aboutsummaryrefslogtreecommitdiff
path: root/archival/libunarchive
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-01-13 21:06:21 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-01-13 21:06:21 +0000
commit150f402b36197d822f8a7dd835231cd67b77e959 (patch)
treeddac0e3876f058e0070dc497902994583517f879 /archival/libunarchive
parent2418288cac34272d99dc8b9f46a74163eff5ea2c (diff)
downloadbusybox-w32-150f402b36197d822f8a7dd835231cd67b77e959.tar.gz
busybox-w32-150f402b36197d822f8a7dd835231cd67b77e959.tar.bz2
busybox-w32-150f402b36197d822f8a7dd835231cd67b77e959.zip
whitespace fixes (leading spaces to tab)
Diffstat (limited to 'archival/libunarchive')
-rw-r--r--archival/libunarchive/get_header_cpio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/get_header_cpio.c b/archival/libunarchive/get_header_cpio.c
index e0272003c..6fd134018 100644
--- a/archival/libunarchive/get_header_cpio.c
+++ b/archival/libunarchive/get_header_cpio.c
@@ -103,7 +103,7 @@ char get_header_cpio(archive_handle_t *archive_handle)
103 /* Always round up */ 103 /* Always round up */
104 printf("%d blocks\n", (int) (archive_handle->offset % 512 ? 104 printf("%d blocks\n", (int) (archive_handle->offset % 512 ?
105 archive_handle->offset / 512 + 1 : 105 archive_handle->offset / 512 + 1 :
106 archive_handle->offset / 512 106 archive_handle->offset / 512
107 )); 107 ));
108 if (saved_hardlinks) { /* Bummer - we still have unresolved hardlinks */ 108 if (saved_hardlinks) { /* Bummer - we still have unresolved hardlinks */
109 hardlinks_t *tmp = saved_hardlinks; 109 hardlinks_t *tmp = saved_hardlinks;