aboutsummaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-07 00:44:31 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-07 00:44:31 +0000
commit04c99ebb4f59d784d8bceaad86cb6227c1babd17 (patch)
tree706ebe3ac53a058c11f8a053f073fa6a387f0bbb /archival
parent19507f0869571f29cfd0a4aed3d7c07db038b129 (diff)
downloadbusybox-w32-04c99ebb4f59d784d8bceaad86cb6227c1babd17.tar.gz
busybox-w32-04c99ebb4f59d784d8bceaad86cb6227c1babd17.tar.bz2
busybox-w32-04c99ebb4f59d784d8bceaad86cb6227c1babd17.zip
random small shrinkage and elimination of statics
Diffstat (limited to 'archival')
-rw-r--r--archival/libunarchive/get_header_ar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/libunarchive/get_header_ar.c b/archival/libunarchive/get_header_ar.c
index c691f1b2f..88c0220ad 100644
--- a/archival/libunarchive/get_header_ar.c
+++ b/archival/libunarchive/get_header_ar.c
@@ -23,9 +23,9 @@ char get_header_ar(archive_handle_t *archive_handle)
23 char magic[2]; 23 char magic[2];
24 } formatted; 24 } formatted;
25 } ar; 25 } ar;
26#ifdef CONFIG_FEATURE_AR_LONG_FILENAMES 26#if ENABLE_FEATURE_AR_LONG_FILENAMES
27 static char *ar_long_names; 27 static char *ar_long_names;
28 static unsigned int ar_long_name_size; 28 static unsigned ar_long_name_size;
29#endif 29#endif
30 30
31 /* dont use xread as we want to handle the error ourself */ 31 /* dont use xread as we want to handle the error ourself */