diff options
author | Denys Vlasenko <dvlasenk@redhat.com> | 2010-10-29 11:46:52 +0200 |
---|---|---|
committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-10-29 11:46:52 +0200 |
commit | fb132e47370378474c68ad22c1c0cb2ccee178de (patch) | |
tree | 4f78d0fdd1c2fa2341c7d9bb17f9d98d099a238c /archival/ar.c | |
parent | 66cb7bed33da605674c3d24734466b8e8a60e337 (diff) | |
download | busybox-w32-fb132e47370378474c68ad22c1c0cb2ccee178de.tar.gz busybox-w32-fb132e47370378474c68ad22c1c0cb2ccee178de.tar.bz2 busybox-w32-fb132e47370378474c68ad22c1c0cb2ccee178de.zip |
whitespace cleanup
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'archival/ar.c')
-rw-r--r-- | archival/ar.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/archival/ar.c b/archival/ar.c index 05556c6cb..730d7c6c6 100644 --- a/archival/ar.c +++ b/archival/ar.c | |||
@@ -179,17 +179,17 @@ static void FAST_FUNC header_verbose_list_ar(const file_header_t *file_header) | |||
179 | ); | 179 | ); |
180 | } | 180 | } |
181 | 181 | ||
182 | #define AR_OPT_VERBOSE (1 << 0) | 182 | #define AR_OPT_VERBOSE (1 << 0) |
183 | #define AR_OPT_PRESERVE_DATE (1 << 1) | 183 | #define AR_OPT_PRESERVE_DATE (1 << 1) |
184 | /* "ar r" implies create, but warns about it. c suppresses warning. | 184 | /* "ar r" implies create, but warns about it. c suppresses warning. |
185 | * bbox accepts but ignores it: */ | 185 | * bbox accepts but ignores it: */ |
186 | #define AR_OPT_CREATE (1 << 2) | 186 | #define AR_OPT_CREATE (1 << 2) |
187 | 187 | ||
188 | #define AR_CMD_PRINT (1 << 3) | 188 | #define AR_CMD_PRINT (1 << 3) |
189 | #define FIRST_CMD AR_CMD_PRINT | 189 | #define FIRST_CMD AR_CMD_PRINT |
190 | #define AR_CMD_LIST (1 << 4) | 190 | #define AR_CMD_LIST (1 << 4) |
191 | #define AR_CMD_EXTRACT (1 << 5) | 191 | #define AR_CMD_EXTRACT (1 << 5) |
192 | #define AR_CMD_INSERT (1 << 6) | 192 | #define AR_CMD_INSERT (1 << 6) |
193 | 193 | ||
194 | int ar_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 194 | int ar_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
195 | int ar_main(int argc UNUSED_PARAM, char **argv) | 195 | int ar_main(int argc UNUSED_PARAM, char **argv) |