summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pacman/files.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/files.c b/src/pacman/files.c
index 8e518486..af11666d 100644
--- a/src/pacman/files.c
+++ b/src/pacman/files.c
@@ -176,11 +176,11 @@ static int files_search(alpm_list_t *syncs, alpm_list_t *targets, int regex) {
notfound:
if(!found) {
- ret++;
+ ret = 1;
}
}
- return 0;
+ return ret;
}
static void dump_file_list(alpm_pkg_t *pkg) {