aboutsummaryrefslogtreecommitdiff
path: root/archival/libunarchive/get_header_tar_bz2.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-09-09 14:11:11 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-09-09 14:11:11 +0000
commit476b0700364f1d2fc3879a49ed53c71b4cc776df (patch)
tree57921bb321ba804e75bba63f061265cc5f8cffae /archival/libunarchive/get_header_tar_bz2.c
parentbf8fcaceb7a9eb23db94ecb20f24291c4a959eca (diff)
downloadbusybox-476b0700364f1d2fc3879a49ed53c71b4cc776df.tar.gz
style fix, no code changes
Diffstat (limited to 'archival/libunarchive/get_header_tar_bz2.c')
-rw-r--r--archival/libunarchive/get_header_tar_bz2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/archival/libunarchive/get_header_tar_bz2.c b/archival/libunarchive/get_header_tar_bz2.c
index 8f7f83fc2..6d4f5851e 100644
--- a/archival/libunarchive/get_header_tar_bz2.c
+++ b/archival/libunarchive/get_header_tar_bz2.c
@@ -13,7 +13,8 @@ char get_header_tar_bz2(archive_handle_t *archive_handle)
archive_handle->src_fd = open_transformer(archive_handle->src_fd, unpack_bz2_stream, "bunzip2", "bunzip2", "-cf", "-", NULL);
archive_handle->offset = 0;
- while (get_header_tar(archive_handle) == EXIT_SUCCESS) /**/;
+ while (get_header_tar(archive_handle) == EXIT_SUCCESS)
+ continue;
/* Can only do one file at a time */
return EXIT_FAILURE;