diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-22 19:38:57 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-22 19:38:57 +0000 |
commit | 68a192c00799fd2097bab1aec594cd27203b1ec6 (patch) | |
tree | 860e081e039e815ea7a9d73eb76f9af0f5f0b425 | |
parent | c445758708e4ca033005b91703770c9d132ba378 (diff) | |
download | busybox-w32-68a192c00799fd2097bab1aec594cd27203b1ec6.tar.gz busybox-w32-68a192c00799fd2097bab1aec594cd27203b1ec6.tar.bz2 busybox-w32-68a192c00799fd2097bab1aec594cd27203b1ec6.zip |
fix trivial build warning
-rw-r--r-- | archival/libunarchive/get_header_tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/get_header_tar.c b/archival/libunarchive/get_header_tar.c index e7a3aeeb3..5310f3f7c 100644 --- a/archival/libunarchive/get_header_tar.c +++ b/archival/libunarchive/get_header_tar.c | |||
@@ -285,7 +285,7 @@ char FAST_FUNC get_header_tar(archive_handle_t *archive_handle) | |||
285 | file_header->mode |= S_IFBLK; | 285 | file_header->mode |= S_IFBLK; |
286 | goto size0; | 286 | goto size0; |
287 | case '5': | 287 | case '5': |
288 | set_dir: | 288 | USE_FEATURE_TAR_OLDGNU_COMPATIBILITY(set_dir:) |
289 | file_header->mode |= S_IFDIR; | 289 | file_header->mode |= S_IFDIR; |
290 | goto size0; | 290 | goto size0; |
291 | case '6': | 291 | case '6': |