summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2010-12-18 13:26:04 +0100
committerDan McGee <dan@archlinux.org>2010-12-21 01:03:21 +0100
commita611879318a4c39488f977308af8ee90f428995b (patch)
treec69723f5229b308ab568e0f211cc168055467131 /src
parent5776090055642bc7651a07cd9d31cf056d0531dc (diff)
downloadpacman-a611879318a4c39488f977308af8ee90f428995b.tar.gz
pacman-a611879318a4c39488f977308af8ee90f428995b.tar.xz
Always specify arguement type in function delcarations
Always declare a function with (void) rather than () when we expect no arguements. Fixes all warnings with -Wstrict-prototypes. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/sync.c2
-rw-r--r--src/util/pactree.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index f9d12e4a..6961f3cf 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -571,7 +571,7 @@ static int sync_list(alpm_list_t *syncs, alpm_list_t *targets)
return(0);
}
-static alpm_list_t *syncfirst() {
+static alpm_list_t *syncfirst(void) {
alpm_list_t *i, *res = NULL;
for(i = config->syncfirst; i; i = alpm_list_next(i)) {
diff --git a/src/util/pactree.c b/src/util/pactree.c
index 5e869672..967f5c8c 100644
--- a/src/util/pactree.c
+++ b/src/util/pactree.c
@@ -54,7 +54,7 @@ int reverse = 0;
int unique = 0;
char *dbpath = NULL;
-static int alpm_local_init()
+static int alpm_local_init(void)
{
int ret;