index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2015-11-01 13:56:38 -0500 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2015-11-04 15:06:21 +1000 |
commit | 8fa02036c3175f4cb1e837b6da5281520524ccba (patch) | |
tree | 7d96f4df62a6e63a3641c6b4ea54a8ef3830d6ff /src | |
parent | 726712aa08bb9699b5cea71a4a7a997551e9d7c8 (diff) |
-rw-r--r-- | src/pacman/files.c | 3 |
diff --git a/src/pacman/files.c b/src/pacman/files.c index 5baf5e57..fb2f997e 100644 --- a/src/pacman/files.c +++ b/src/pacman/files.c @@ -206,10 +206,11 @@ static void dump_file_list(alpm_pkg_t *pkg) { static int files_list(alpm_list_t *syncs, alpm_list_t *targets) { alpm_list_t *i, *j; - int ret = 0, found = 0; + int ret = 0; if(targets != NULL) { for(i = targets; i; i = alpm_list_next(i)) { + int found = 0; char *targ = i->data; char *repo = NULL; char *c = strchr(targ, '/'); |