diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-04-16 22:32:04 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-04-16 22:32:04 +0000 |
commit | 318604b951e5f74ff9889274d82f908ac5818fac (patch) | |
tree | f1354d1d4e3ca29b1fd77698d45791e61fd7a8b1 /archival | |
parent | 00f949b5504f0d5c5dc3bb02da393481980631eb (diff) | |
download | busybox-w32-318604b951e5f74ff9889274d82f908ac5818fac.tar.gz busybox-w32-318604b951e5f74ff9889274d82f908ac5818fac.tar.bz2 busybox-w32-318604b951e5f74ff9889274d82f908ac5818fac.zip |
style fixes, no code changes
git-svn-id: svn://busybox.net/trunk/busybox@18461 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'archival')
-rw-r--r-- | archival/dpkg.c | 3 | ||||
-rw-r--r-- | archival/rpm.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c index c5deb0f71..7d31ad12e 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c | |||
@@ -352,7 +352,8 @@ static int search_package_hashtable(const unsigned name, const unsigned version, | |||
352 | * FIXME: I don't think this is very efficient, but I thought I'd keep | 352 | * FIXME: I don't think this is very efficient, but I thought I'd keep |
353 | * it simple for now until it proves to be a problem. | 353 | * it simple for now until it proves to be a problem. |
354 | */ | 354 | */ |
355 | static int search_for_provides(int needle, int start_at) { | 355 | static int search_for_provides(int needle, int start_at) |
356 | { | ||
356 | int i, j; | 357 | int i, j; |
357 | common_node_t *p; | 358 | common_node_t *p; |
358 | for (i = start_at + 1; i < PACKAGE_HASH_PRIME; i++) { | 359 | for (i = start_at + 1; i < PACKAGE_HASH_PRIME; i++) { |
diff --git a/archival/rpm.c b/archival/rpm.c index a48dda3bc..654a4a381 100644 --- a/archival/rpm.c +++ b/archival/rpm.c | |||
@@ -185,7 +185,8 @@ int rpm_main(int argc, char **argv) | |||
185 | return 0; | 185 | return 0; |
186 | } | 186 | } |
187 | 187 | ||
188 | static void extract_cpio_gz(int fd) { | 188 | static void extract_cpio_gz(int fd) |
189 | { | ||
189 | archive_handle_t *archive_handle; | 190 | archive_handle_t *archive_handle; |
190 | unsigned char magic[2]; | 191 | unsigned char magic[2]; |
191 | 192 | ||