summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason St. John <jstjohn@purdue.edu>2013-10-31 22:31:32 +0100
committerAllan McRae <allan@archlinux.org>2013-11-08 00:28:05 +0100
commit88df07717de868dc2bd2424afefaea6c77efa4c0 (patch)
treeb6d34122e5f6994a00c92c783597f7aa32a6f9dd /src
parent14cc790c59e55f4a3f4d7fc47a2f60c468c5887b (diff)
downloadpacman-88df07717de868dc2bd2424afefaea6c77efa4c0.tar.gz
pacman-88df07717de868dc2bd2424afefaea6c77efa4c0.tar.xz
Remove spaces between the opening "if" and the opening parenthesis
Signed-off-by: Jason St. John <jstjohn@purdue.edu> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/sync.c2
-rw-r--r--src/pacman/util.c2
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");
}