summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChantry Xavier <shiningxc@gmail.com>2007-08-24 11:47:40 +0200
committerDan McGee <dan@archlinux.org>2007-08-26 19:32:00 +0200
commitc8011954a5fc3d838bc2fc72ed03da4506a695e1 (patch)
tree340f5acaea33ab4c745ef5ca035bd68a4662b085 /src
parent3e418a15341e51a9ca3ac61c4b134682235f6a9c (diff)
downloadpacman-c8011954a5fc3d838bc2fc72ed03da4506a695e1.tar.gz
pacman-c8011954a5fc3d838bc2fc72ed03da4506a695e1.tar.xz
pacman/sync.c : kill extra newline with groups on -Ss operation.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/sync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index dab3f595..53ec41e9 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -263,7 +263,7 @@ static int sync_search(alpm_list_t *syncs, alpm_list_t *targets)
if((grp = alpm_pkg_get_groups(pkg)) != NULL) {
group = alpm_list_getdata(grp);
- printf(" (%s)\n", (char *)alpm_list_getdata(grp));
+ printf(" (%s)", (char *)alpm_list_getdata(grp));
}
/* we need a newline and initial indent first */