diff options
Diffstat (limited to 'src/pacman/add.c')
-rw-r--r-- | src/pacman/add.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 */ |