summaryrefslogtreecommitdiffstats
path: root/src/pacman/pacman.c
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-12-07 05:37:32 +0100
committerDan McGee <dan@archlinux.org>2011-12-12 19:51:59 +0100
commit3d4656c0204956847a62c95b0f28747d7a0c2c05 (patch)
tree8263b85a03d387a6911748d763fdd1e8235248d7 /src/pacman/pacman.c
parent5f0df423033c94e8ae52ca642284bf6a50fa9bbb (diff)
downloadpacman-3d4656c0204956847a62c95b0f28747d7a0c2c05.tar.gz
pacman-3d4656c0204956847a62c95b0f28747d7a0c2c05.tar.xz
code syntax cleanup
As per HACKING file, we use 'CTRL(' rather than 'CTRL (' Signed-off-by: Dave Reisner <dreisner@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src/pacman/pacman.c')
-rw-r--r--src/pacman/pacman.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c
index fa35e8de..d2fa62f8 100644
--- a/src/pacman/pacman.c
+++ b/src/pacman/pacman.c
@@ -207,7 +207,7 @@ static void usage(int op, const char * const myname)
addlist(_(" --noconfirm do not ask for any confirmation\n"));
}
list = alpm_list_msort(list, alpm_list_count(list), options_cmp);
- for (i = list; i; i = alpm_list_next(i)) {
+ for(i = list; i; i = alpm_list_next(i)) {
fputs((const char *)i->data, stdout);
}
alpm_list_free(list);