diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-16 22:32:04 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-16 22:32:04 +0000 |
commit | ac678ec2f127fc02a93fff2c164e0b13a94a6abf (patch) | |
tree | f1354d1d4e3ca29b1fd77698d45791e61fd7a8b1 /archival/dpkg.c | |
parent | 17e3c34aa7abe42aa604234235338e2b8087b8a0 (diff) | |
download | busybox-w32-ac678ec2f127fc02a93fff2c164e0b13a94a6abf.tar.gz busybox-w32-ac678ec2f127fc02a93fff2c164e0b13a94a6abf.tar.bz2 busybox-w32-ac678ec2f127fc02a93fff2c164e0b13a94a6abf.zip |
style fixes, no code changes
Diffstat (limited to 'archival/dpkg.c')
-rw-r--r-- | archival/dpkg.c | 3 |
1 files changed, 2 insertions, 1 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++) { |