diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/sync.c | 2 | ||||
-rw-r--r-- | src/pacman/util.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c index 0002db6e..e9b98fa3 100644 --- a/src/pacman/sync.c +++ b/src/pacman/sync.c @@ -391,7 +391,7 @@ static int sync_group(int level, alpm_list_t *syncs, alpm_list_t *targets) } } } - if (!found) { + if(!found) { ret = 1; } } diff --git a/src/pacman/util.c b/src/pacman/util.c index 0e9a4200..d7e44fbf 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -611,7 +611,7 @@ static int table_display(const alpm_list_t *header, return -1; } - if (header) { + if(header) { table_print_line(header, padding, totalcols, widths, has_data); printf("\n"); } |