From cdaed9221d9614c4c43103d79f8b53b916d80d86 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 1 Feb 2007 06:35:30 +0000 Subject: * Tried to clean up newline display a bit in the frontend. * Removed useless buildstring function from util.h; replaced all calls of it with list_display. * Made list_display output 2 spaces instead of 1 between each item. --- src/pacman/add.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/pacman/add.c') diff --git a/src/pacman/add.c b/src/pacman/add.c index 6572b8fc..74f9e27b 100644 --- a/src/pacman/add.c +++ b/src/pacman/add.c @@ -76,12 +76,13 @@ int pacman_add(alpm_list_t *targets) MSG(NL, _("loading package data... ")); for(i = targets; i; i = i->next) { if(alpm_trans_addtarget(i->data) == -1) { + MSG(NL, "\n"); ERR(NL, _("failed to add target '%s' (%s)\n"), (char *)i->data, alpm_strerror(pm_errno)); retval = 1; goto cleanup; } } - MSG(CL, _("done.")); + MSG(CL, _("done.\n")); /* Step 2: "compute" the transaction based on targets and flags */ -- cgit v1.2.3-54-g00ecf