diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-11 08:23:52 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-11 08:23:52 +0000 |
commit | 86090e25990cfa176e2ae54c57f2c754950cbfa1 (patch) | |
tree | 71c3df7dcb3d626fcf6d4e40c4675908a95df471 /archival/libunarchive/get_header_tar.c | |
parent | 3e8fd18037030df36d686e4d16c6d548a79f60c3 (diff) |
fix compile failures resulting from last few commits
Diffstat (limited to 'archival/libunarchive/get_header_tar.c')
-rw-r--r-- | archival/libunarchive/get_header_tar.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/archival/libunarchive/get_header_tar.c b/archival/libunarchive/get_header_tar.c index cf35d41a0..e9c730d65 100644 --- a/archival/libunarchive/get_header_tar.c +++ b/archival/libunarchive/get_header_tar.c @@ -108,8 +108,7 @@ char FAST_FUNC get_header_tar(archive_handle_t *archive_handle) bb_error_msg_and_die("short read"); } if (i != 512) { - if (ENABLE_FEATURE_TAR_AUTODETECT) - goto autodetect; + USE_FEATURE_TAR_AUTODETECT(goto autodetect;) goto short_read; } |