diff options
author | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-04-16 04:30:38 +0000 |
---|---|---|
committer | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-04-16 04:30:38 +0000 |
commit | bcffd7a80dbf6f6d58670849274394733efde967 (patch) | |
tree | 0fb5b9eaab153b533ffe5b228d70f05ebf0b3b16 /archival/dpkg.c | |
parent | cdc31e7af53136fb35d2c1bfe4db80df8522f5a4 (diff) | |
download | busybox-w32-bcffd7a80dbf6f6d58670849274394733efde967.tar.gz busybox-w32-bcffd7a80dbf6f6d58670849274394733efde967.tar.bz2 busybox-w32-bcffd7a80dbf6f6d58670849274394733efde967.zip |
In Bug 208, bernhardf writes:
On machines with only ANSI compliant compilers, not explitily delcaring
an empty parameter list 'void' causes failure.
git-svn-id: svn://busybox.net/trunk/busybox@10113 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'archival/dpkg.c')
-rw-r--r-- | archival/dpkg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c index c096518a2..d3b56e398 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c | |||
@@ -1327,7 +1327,7 @@ void free_array(char **array) | |||
1327 | * the status_hashtable to retrieve the info. This results in smaller code than | 1327 | * the status_hashtable to retrieve the info. This results in smaller code than |
1328 | * scanning the status file. The resulting list, however, is unsorted. | 1328 | * scanning the status file. The resulting list, however, is unsorted. |
1329 | */ | 1329 | */ |
1330 | void list_packages(void) | 1330 | static void list_packages(void) |
1331 | { | 1331 | { |
1332 | int i; | 1332 | int i; |
1333 | 1333 | ||