summaryrefslogtreecommitdiffstats
path: root/src/pacman/util.c
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/pacman/util.c
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/pacman/util.c')
-rw-r--r--src/pacman/util.c2
1 files changed, 1 insertions, 1 deletions
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");
}